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 /misc/git/Makefile | |
parent | 279dda1358a353dd9c690ba5ca637faf58f3a431 (diff) | |
download | pkgsrc-8639bafeaa485cc1edbbeb6e2ce7d43ab384150b.tar.gz |
Fix setting CONFIGURE_ARGS ("=" -> "+=")
Diffstat (limited to 'misc/git/Makefile')
-rw-r--r-- | misc/git/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/git/Makefile b/misc/git/Makefile index 093c47537e7..cb4ecd03d82 100644 --- a/misc/git/Makefile +++ b/misc/git/Makefile @@ -3,7 +3,7 @@ # Date created: 12 Jul 1995 # Whom: torstenb@FreeBSD.ORG # -# $NetBSD: Makefile,v 1.2 1997/10/24 01:17:57 hubertf Exp $ +# $NetBSD: Makefile,v 1.3 1997/12/22 07:45:46 hubertf Exp $ # FreeBSD Id: Makefile,v 1.8 1996/11/21 11:54:39 asami Exp # @@ -12,7 +12,7 @@ CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_GNU} GNU_CONFIGURE= YES -CONFIGURE_ARGS= ${ARCH}--netbsd +CONFIGURE_ARGS+= ${ARCH}--netbsd RUN_DEPENDS= ${PREFIX}/bin/install-info:${PORTSDIR}/devel/gtexinfo MAN1= git.1 gitaction.1 gitmount.1 gitcmp.1 gitkeys.1 \ gitredir.1 gitrgrep.1 gitps.1 gitview.1 |