diff options
author | grant <grant@pkgsrc.org> | 2003-09-18 23:42:24 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-09-18 23:42:24 +0000 |
commit | 83fcbed2b1a429fb1c019791d1c09b53db549010 (patch) | |
tree | 001a28be93b1eed6988da70ea3156543a141818e /pkgtools/pkg_install | |
parent | 4f591160f0cb10c46b93d02390208ef426c6c15f (diff) | |
download | pkgsrc-83fcbed2b1a429fb1c019791d1c09b53db549010.tar.gz |
ensure CC is set correctly when running configure in libnbcompat.
Diffstat (limited to 'pkgtools/pkg_install')
-rw-r--r-- | pkgtools/pkg_install/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgtools/pkg_install/Makefile b/pkgtools/pkg_install/Makefile index d65bbbd1eaa..7c45a0fd33c 100644 --- a/pkgtools/pkg_install/Makefile +++ b/pkgtools/pkg_install/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.84 2003/09/14 15:29:03 jlam Exp $ +# $NetBSD: Makefile,v 1.85 2003/09/18 23:42:24 grant Exp $ # Notes to package maintainers: # @@ -49,7 +49,8 @@ do-extract: @${CP} -Rp ${FILESDIR} ${WRKSRC} pre-configure: - cd ${LIBNBCOMPAT_SRCDIR} && ./configure && ${MAKE_PROGRAM} + cd ${LIBNBCOMPAT_SRCDIR} && ${SETENV} CC="${CC}" ./configure && \ + ${MAKE_PROGRAM} post-install: if [ ! -f ${PKG_DBDIR}/pkgdb.byfile.db ]; then \ |