diff options
author | joerg <joerg@pkgsrc.org> | 2008-04-08 11:50:46 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-04-08 11:50:46 +0000 |
commit | 3f71ec6d781b962f99092fe1cf51b122e9fc7433 (patch) | |
tree | 98b0c482e59243def084c84a1f70e1478aa4ee0e | |
parent | cc34541e10d4d1e36002e9f85b825815a23c7ead (diff) | |
download | pkgsrc-3f71ec6d781b962f99092fe1cf51b122e9fc7433.tar.gz |
Force depend target to explicitly run for libfetch. Disallow parallel
builds in that part of the build. This works around issues with
bootstrap-mk-files not handling DPSRCS correctly.
-rw-r--r-- | pkgtools/pkg_install/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgtools/pkg_install/Makefile b/pkgtools/pkg_install/Makefile index a0b27ca7bad..66db3dd6a8c 100644 --- a/pkgtools/pkg_install/Makefile +++ b/pkgtools/pkg_install/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.150 2008/04/04 15:21:32 joerg Exp $ +# $NetBSD: Makefile,v 1.151 2008/04/08 11:50:46 joerg Exp $ # Notes to package maintainers: # @@ -150,7 +150,10 @@ pre-configure: --disable-dependency-tracking cd ${WRKDIR}/libarchive && ${BUILD_MAKE_CMD} .endif - cd ${WRKDIR}/libfetch && ${BUILD_MAKE_CMD} + cd ${WRKDIR}/libfetch && ${SETENV} ${MAKE_ENV} \ + ${MAKE_PROGRAM} ${MAKE_FLAGS} ${BUILD_MAKE_FLAGS} \ + -f ${MAKE_FILE} depend all + # XXX Reverse the order that update does things since # XXX we need pkg_delete built before we can deinstall. |