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 | 7e5d22b940d21036ae823a964c723726bd40c96c (patch) | |
tree | 98b0c482e59243def084c84a1f70e1478aa4ee0e /pkgtools/pkg_install/Makefile | |
parent | cd84772c2b38b04086e003dd5e4b1b3d5fb8ed80 (diff) | |
download | pkgsrc-7e5d22b940d21036ae823a964c723726bd40c96c.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.
Diffstat (limited to 'pkgtools/pkg_install/Makefile')
-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. |