diff options
author | joerg <joerg@pkgsrc.org> | 2015-04-21 00:28:19 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2015-04-21 00:28:19 +0000 |
commit | 612bb7039503f13df7b816ac995e3cebff23a093 (patch) | |
tree | c14b861216fe8493ed92bab83f52ca029d18f8bf /pkgtools/pkg_install | |
parent | 6d8578721a4f26fc49aa4dcc0ac42f91a0f64a68 (diff) | |
download | pkgsrc-612bb7039503f13df7b816ac995e3cebff23a093.tar.gz |
Since CONFIG_*_OVERRIDE replaces the automatic list, add ${WRKSRC}
manually.
Diffstat (limited to 'pkgtools/pkg_install')
-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 |