diff options
author | agc <agc> | 2000-05-11 11:25:18 +0000 |
---|---|---|
committer | agc <agc> | 2000-05-11 11:25:18 +0000 |
commit | 5d8ad332dc59571769fec792f870f8f5e894afdb (patch) | |
tree | 9cbabaeb26fe1f73c15a4d193dcd134842783542 /Makefile | |
parent | 856fe6cecf95a5e5cb940d59eb37778e3ed044ab (diff) | |
download | pkgsrc-5d8ad332dc59571769fec792f870f8f5e894afdb.tar.gz |
Introduce a new target "show-host-specific-pkgs", which uses the new
show-pkgsrc-dir target to compile a list of host specific package
directories from which the packages can be built and installed.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.32 2000/03/30 13:01:49 hubertf Exp $ +# $NetBSD: Makefile,v 1.33 2000/05/11 11:25:18 agc Exp $ # FreeBSD Id: Makefile,v 1.35 1997/08/19 07:10:01 fenner Exp # @@ -140,3 +140,8 @@ README-IPv6.html: >$@ @${RM} $@.trs @${RM} $@.pkgs + +show-host-specific-pkgs: + @echo "HOST_SPECIFIC_PKGS= \\"; \ + ${MAKE} show-pkgsrc-dir | awk '/^===/ { next; } { printf("%s \\\n", $$1) }'; \ + echo "" |