diff options
author | hubertf <hubertf@pkgsrc.org> | 1997-12-22 07:45:38 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1997-12-22 07:45:38 +0000 |
commit | 8639bafeaa485cc1edbbeb6e2ce7d43ab384150b (patch) | |
tree | f1ede92dd4a3f7486eb9c5b1fc31bf76545494e9 /security | |
parent | 279dda1358a353dd9c690ba5ca637faf58f3a431 (diff) | |
download | pkgsrc-8639bafeaa485cc1edbbeb6e2ce7d43ab384150b.tar.gz |
Fix setting CONFIGURE_ARGS ("=" -> "+=")
Diffstat (limited to 'security')
-rw-r--r-- | security/ssh/Makefile | 4 | ||||
-rw-r--r-- | security/sudo/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/security/ssh/Makefile b/security/ssh/Makefile index 2a149062653..0be9255dea3 100644 --- a/security/ssh/Makefile +++ b/security/ssh/Makefile @@ -3,7 +3,7 @@ # Date created: 19971214 # Whom: hubertf@netbsd.org # -# $NetBSD: Makefile,v 1.2 1997/12/18 02:44:51 mrg Exp $ +# $NetBSD: Makefile,v 1.3 1997/12/22 07:45:52 hubertf Exp $ # FreeBSD Id: Makefile,v 1.47 1997/11/10 22:04:42 dima Exp # # Maximal ssh package requires YES values for @@ -37,7 +37,7 @@ IS_INTERACTIVE= YES GNU_CONFIGURE= YES -CONFIGURE_ARGS= --prefix=${PREFIX} --with-etcdir=/etc +CONFIGURE_ARGS+= --prefix=${PREFIX} --with-etcdir=/etc #Uncomment if all your users are in their own group and their homedir #is writeable by that group. Beware the security implications! diff --git a/security/sudo/Makefile b/security/sudo/Makefile index dfa695fee50..5cc3c91634b 100644 --- a/security/sudo/Makefile +++ b/security/sudo/Makefile @@ -3,7 +3,7 @@ # Date created: Sun Dec 14 23:01:32 MET 1997 # Whom: soren@t.dk # -# $NetBSD: Makefile,v 1.2 1997/12/14 23:38:21 hubertf Exp $ +# $NetBSD: Makefile,v 1.3 1997/12/22 07:45:53 hubertf Exp $ # FreeBSD Id: Makefile,v 1.9 1997/11/12 03:24:41 obrien Exp # @@ -16,7 +16,7 @@ EXTRACT_SUFX= .tar.Z MAINTAINER= erich@rrnet.com GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-C2 --with-skey --with-fbsdops +CONFIGURE_ARGS+= --with-C2 --with-skey --with-fbsdops WRKSRC= ${WRKDIR}/sudo.v1.5.3 MAN5= sudoers.5 MAN8= sudo.8 visudo.8 |