diff options
author | zuntum <zuntum> | 2001-03-31 12:13:37 +0000 |
---|---|---|
committer | zuntum <zuntum> | 2001-03-31 12:13:37 +0000 |
commit | d450d2ff9d62029deae172afe9f8a80d3ab6d136 (patch) | |
tree | 7ad103fefa4d9168de6a995fee9ca2fc35a046f2 /sysutils | |
parent | 00e173ee7b2a11dece25d4e564bd8f3d835bc1a2 (diff) | |
download | pkgsrc-d450d2ff9d62029deae172afe9f8a80d3ab6d136.tar.gz |
o CC=gcc -> CC="${CC}"
o fix quoting
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/depot/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysutils/depot/Makefile b/sysutils/depot/Makefile index 4dee3748bde..d977e1c3d40 100644 --- a/sysutils/depot/Makefile +++ b/sysutils/depot/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2001/02/17 17:42:12 wiz Exp $ +# $NetBSD: Makefile,v 1.9 2001/03/31 12:13:37 zuntum Exp $ # DISTNAME= depot-5.14 @@ -10,8 +10,8 @@ HOMEPAGE= http://andrew2.andrew.cmu.edu/depot/depot.html COMMENT= Maps several separate packages into a tree without merging them GNU_CONFIGURE= yes -CONFIGURE_ENV+= INSTALL="" CC=gcc -MAKE_ENV+= CC=gcc +CONFIGURE_ENV+= INSTALL="" CC="${CC}" +MAKE_ENV+= CC=${CC} do-install: @cd ${WRKSRC}/src/cmd && ${MAKE} DESTDIR=${PREFIX} install |