diff options
author | sbd <sbd@pkgsrc.org> | 2013-03-25 10:09:04 +0000 |
---|---|---|
committer | sbd <sbd@pkgsrc.org> | 2013-03-25 10:09:04 +0000 |
commit | 298722a3eb8ac3fd9fc31218e7fe24e24f6db962 (patch) | |
tree | 2b3d93ec7a896abc03cdb9e4a516a5820ba5b671 /pkgtools/pkgin | |
parent | 5b44fa2e2bc9c87bdc67e91b98b5b04e93c69ec1 (diff) | |
download | pkgsrc-298722a3eb8ac3fd9fc31218e7fe24e24f6db962.tar.gz |
USE_FEATURES must come before bsd.prefs.mk is included.
Diffstat (limited to 'pkgtools/pkgin')
-rw-r--r-- | pkgtools/pkgin/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgtools/pkgin/Makefile b/pkgtools/pkgin/Makefile index c914dc78f7f..e6cf8e071d2 100644 --- a/pkgtools/pkgin/Makefile +++ b/pkgtools/pkgin/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.34 2013/02/25 19:35:38 imil Exp $ +# $NetBSD: Makefile,v 1.35 2013/03/25 10:09:04 sbd Exp $ # DISTNAME= pkgin-0.6.3.1.1 @@ -29,6 +29,10 @@ SUBST_SED.path+= -e "s|/var|${VARBASE}|g" SUBST_SED.path+= -e "s|/usr/pkg|${PREFIX}|g" SUBST_SED.path+= -e "s|!=.*uname -p|= ${MACHINE_ARCH}|g" +GNU_CONFIGURE= yes +USE_FEATURES= nbcompat +USE_TOOLS+= nroff + .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "NetBSD" @@ -39,10 +43,6 @@ SUBST_FILES.osrel= REPOSITORIES SUBST_SED.osrel= -e "s|@OSREL@|${OS_VERSION:C/_.*//}|" .endif -GNU_CONFIGURE= yes -USE_FEATURES= nbcompat -USE_TOOLS+= nroff - MAKE_ENV+= MACHINE_ARCH=${MACHINE_ARCH} DEPENDS+= pkg_install>=20110215:../../pkgtools/pkg_install |