diff options
author | minskim <minskim@pkgsrc.org> | 2006-07-07 23:20:20 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2006-07-07 23:20:20 +0000 |
commit | 85dae36fee0414e9ae7e1b0b3d4f4802772eed38 (patch) | |
tree | e72cae77c6ed789eae0bfd6d07a4234447c0fadd /audio | |
parent | 6ba884ea507f8f76bcee125186f4d22ab0e295b9 (diff) | |
download | pkgsrc-85dae36fee0414e9ae7e1b0b3d4f4802772eed38.tar.gz |
Run configure with env variables set by pkgsrc. Previously, it was imake
that ran configure, which failed on Darwin because imake didn't pass all
variables in CONFIGURE_ENV.
This fixes PR 33812. The package still does not build on Darwin due to
link errors.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/nas/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/audio/nas/Makefile b/audio/nas/Makefile index fccd5371878..8c0562a3495 100644 --- a/audio/nas/Makefile +++ b/audio/nas/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.62 2006/07/07 22:10:06 jlam Exp $ +# $NetBSD: Makefile,v 1.63 2006/07/07 23:20:20 minskim Exp $ DISTNAME= nas-1.8.src PKGNAME= ${DISTNAME:S/.src//} @@ -60,4 +60,7 @@ PLIST_SRC+= ${PKGDIR}/PLIST.server . endif .endif +pre-configure: + cd ${WRKSRC}/config && ${SETENV} ${CONFIGURE_ENV} ./configure + .include "../../mk/bsd.pkg.mk" |