diff options
author | joerg <joerg@pkgsrc.org> | 2014-11-25 18:27:17 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2014-11-25 18:27:17 +0000 |
commit | 7bc0a5114ba44d61b2b371172ecf850009767716 (patch) | |
tree | 5cd020e2c17793637e5e62f82b266dac6b6da677 /mk | |
parent | 3123781d7e7bdd4f849dcb7da3e25dd845e3ac9d (diff) | |
download | pkgsrc-7bc0a5114ba44d61b2b371172ecf850009767716.tar.gz |
mk/buildlink3/* (via mk/wrapper/bsd.wrapper.mk") must be included before
mk/cwrappers.mk, so fix include order.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 98a98b48b40..a16022cad7f 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.2005 2014/11/24 00:32:31 joerg Exp $ +# $NetBSD: bsd.pkg.mk,v 1.2006 2014/11/25 18:27:17 joerg Exp $ # # This file is in the public domain. # @@ -430,12 +430,12 @@ fake-home: ${FAKEHOMEDIR} ${FAKEHOMEDIR}: ${RUN} ${MKDIR} ${.TARGET} +.include "wrapper/bsd.wrapper.mk" + .if ${USE_CWRAPPERS:tl} != "no" .include "cwrappers.mk" .endif -.include "wrapper/bsd.wrapper.mk" - .if defined(ABI_DEPENDS) || defined(BUILD_ABI_DEPENDS) . if !empty(USE_ABI_DEPENDS:M[yY][eE][sS]) DEPENDS+= ${ABI_DEPENDS} |