diff options
author | joerg <joerg@pkgsrc.org> | 2005-11-16 13:53:51 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2005-11-16 13:53:51 +0000 |
commit | e806cd23e8d50e54075715a9659d96b54e9dfa05 (patch) | |
tree | fe0abbe5c497f935b197ae57fa18fb274450a25c /devel | |
parent | 510528ea81b097b87657068eec255d3511d2a5b6 (diff) | |
download | pkgsrc-e806cd23e8d50e54075715a9659d96b54e9dfa05.tar.gz |
sysMkPath should be ${PREFIX}/share/mk by default and only that.
Including e.g. /usr/share/mk results in sys.mk read from there
as well. On DragonFly this adds X11BASE and results in obscure
breakages. Since the mk files are supposed to be self-contained,
it doesn't make much sense to look in other directories anyway.
Bump revision to annotate this.
Discussed-with: reed@.
Reported-by: Aggelos Economopoulos <aoiko AT cc DOT ece DOT ntua DOT gr>
Diffstat (limited to 'devel')
-rw-r--r-- | devel/bmake/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/devel/bmake/Makefile b/devel/bmake/Makefile index ea3ff072f19..677a44bb758 100644 --- a/devel/bmake/Makefile +++ b/devel/bmake/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.27 2005/11/10 00:09:34 reed Exp $ +# $NetBSD: Makefile,v 1.28 2005/11/16 13:53:51 joerg Exp $ # DISTNAME= bmake-20051105 +PKGREVISION= 1 CATEGORIES= devel MASTER_SITES= # empty DISTFILES= # empty @@ -16,7 +17,7 @@ COMMENT= Portable (autoconf) version of NetBSD 'make' utility WRKSRC= ${WRKDIR}/bmake NO_CHECKSUM= YES -makesyspath=${PREFIX}/share/mk:/usr/share/mk:/usr/local/share/mk:/opt/share/mk +makesyspath= ${PREFIX}/share/mk INSTALLATION_DIRS= bin ${PKGMANDIR}/cat1 ${PKGMANDIR}/man1 |