diff options
author | jmmv <jmmv@pkgsrc.org> | 2003-09-18 14:15:00 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2003-09-18 14:15:00 +0000 |
commit | 9f1faec9e2294cd9814e6fb81eb212cc53ae9db0 (patch) | |
tree | 924957603f14fc0c8f503ccd99fd03c84781e941 /pkgtools | |
parent | 23702432339e3ec4e78ba41351fe9c8a916e2def (diff) | |
download | pkgsrc-9f1faec9e2294cd9814e6fb81eb212cc53ae9db0.tar.gz |
Update to 2.7:
- Do not include pkgconfig's nor intltool's dependancies in new generated bl2
files. These are *build* dependancies, and the package providing the bl2
should not assume we will be using them.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/createbuildlink/Makefile | 4 | ||||
-rwxr-xr-x | pkgtools/createbuildlink/files/createbuildlink | 7 |
2 files changed, 6 insertions, 5 deletions
diff --git a/pkgtools/createbuildlink/Makefile b/pkgtools/createbuildlink/Makefile index 792a4a83ca6..26191a26b93 100644 --- a/pkgtools/createbuildlink/Makefile +++ b/pkgtools/createbuildlink/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.17 2003/07/17 22:52:13 grant Exp $ +# $NetBSD: Makefile,v 1.18 2003/09/18 14:15:00 jmmv Exp $ # -DISTNAME= createbuildlink-2.6 +DISTNAME= createbuildlink-2.7 WRKSRC= ${WRKDIR} CATEGORIES= pkgtools sysutils MASTER_SITES= # Nothing diff --git a/pkgtools/createbuildlink/files/createbuildlink b/pkgtools/createbuildlink/files/createbuildlink index c71e1ab5fd0..8f2af539dd6 100755 --- a/pkgtools/createbuildlink/files/createbuildlink +++ b/pkgtools/createbuildlink/files/createbuildlink @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: createbuildlink,v 1.13 2003/04/29 01:36:08 rh Exp $ +# $NetBSD: createbuildlink,v 1.14 2003/09/18 14:15:01 jmmv Exp $ # # Copyright (c) 2002 The NetBSD Foundation, Inc. # All rights reserved. @@ -39,7 +39,7 @@ # Create an initial buildlink2.mk from a package's Makefile and PLIST # -REV=`echo '$Revision: 1.13 $' | sed 's/\\$//g'` +REV=`echo '$Revision: 1.14 $' | sed 's/\\$//g'` tmpdir=/tmp makefile=Makefile sedrules=$tmpdir/sedrules.buildlink.$$ @@ -164,7 +164,8 @@ echo "" ## buildlinked dependencies ## for i in $makefile $commons ; do - [ ! -f $i ] || grep '^.include.*\.\.\/.*\/.*/buildlink2.mk\"' $i + [ ! -f $i ] || grep '^.include.*\.\.\/.*\/.*/buildlink2.mk\"' $i | + grep -v devel/pkgconfig | grep -v textproc/intltool done grep -l '^.include.*\.\.\/.*\/.*/buildlink2.mk\"' $makefile $commons \ >/dev/null 2>&1 && echo "" # Be careful not to print duplicate \n |