summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorhubertf <hubertf@pkgsrc.org>2000-03-30 13:01:49 +0000
committerhubertf <hubertf@pkgsrc.org>2000-03-30 13:01:49 +0000
commit204a64e7d7386e7e3a71b10734b04251b6d6081c (patch)
treeb9d2964c2506a573f77cd439a99228f9395a6c67 /Makefile
parentf88a0a03d8d4356856ccde6cf4d684ee22768b29 (diff)
downloadpkgsrc-204a64e7d7386e7e3a71b10734b04251b6d6081c.tar.gz
Change detection of IPv6-enabled packages by searching for
"^BUILD_DEFS.*=.*USE_INET6" instead of just "USE_INET6" in the pkg's Makefile. Suggested by Jun-ichiro itojun Hagino <itojun@iijlab.net> on tech-pkg.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 933cbb2d4c3..e7a649fa4da 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.31 2000/02/25 01:04:11 wiz Exp $
+# $NetBSD: Makefile,v 1.32 2000/03/30 13:01:49 hubertf Exp $
# FreeBSD Id: Makefile,v 1.35 1997/08/19 07:10:01 fenner Exp
#
@@ -130,7 +130,8 @@ readme-ipv6:
fi
README-IPv6.html:
- @grep -l USE_INET6 */*/Makefile | sed s,.Makefile,, >$@.pkgs
+ @grep -l '^BUILD_DEFS.*=.*USE_INET6' */*/Makefile \
+ | sed s,.Makefile,, >$@.pkgs
@fgrep -f $@.pkgs README-all.html | sort -t/ +1 >$@.trs
@cat templates/README.ipv6 \
| ${SED} \