diff options
author | joerg <joerg> | 2015-04-21 00:28:19 +0000 |
---|---|---|
committer | joerg <joerg> | 2015-04-21 00:28:19 +0000 |
commit | b98dfe65927efb46979eb315eb32a366f3cb0df1 (patch) | |
tree | c14b861216fe8493ed92bab83f52ca029d18f8bf /pkgtools | |
parent | 283d6d2b9fdb5f6a6e45a1b474284946138ecbd2 (diff) | |
download | pkgsrc-b98dfe65927efb46979eb315eb32a366f3cb0df1.tar.gz |
Since CONFIG_*_OVERRIDE replaces the automatic list, add ${WRKSRC}
manually.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkg_install/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgtools/pkg_install/Makefile b/pkgtools/pkg_install/Makefile index cde3fb5c789..92e418d86a5 100644 --- a/pkgtools/pkg_install/Makefile +++ b/pkgtools/pkg_install/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.207 2015/04/02 23:06:34 jperkin Exp $ +# $NetBSD: Makefile,v 1.208 2015/04/21 00:28:19 joerg Exp $ # Notes to package maintainers: # @@ -151,8 +151,10 @@ LIBARCHIVE_LIBS= ${SED} -n -e 's/^Libs.private://p' \ ${WRKDIR}/libarchive/build/pkgconfig/libarchive.pc 2>/dev/null || echo LIBS+= ${LIBARCHIVE_LIBS:sh} -CONFIG_GUESS_OVERRIDE+= ${WRKDIR}/libarchive/build/autoconf/config.guess -CONFIG_SUB_OVERRIDE+= ${WRKDIR}/libarchive/build/autoconf/config.sub +CONFIG_GUESS_OVERRIDE+= ${WRKDIR}/libarchive/build/autoconf/config.guess \ + ${WRKSRC}/config.guess +CONFIG_SUB_OVERRIDE+= ${WRKDIR}/libarchive/build/autoconf/config.sub \ + ${WRKSRC}/config.sub . if ${OPSYS} == "Cygwin" CPPFLAGS+= -DLIBARCHIVE_STATIC |