diff options
author | gpalmer <gpalmer@FreeBSD.org> | 1995-03-24 05:03:32 +0800 |
---|---|---|
committer | gpalmer <gpalmer@FreeBSD.org> | 1995-03-24 05:03:32 +0800 |
commit | 24ae85fec01ca14f008affbe50bff4e2c0f6b03d (patch) | |
tree | 2cb798935e514e05b0a901da4270f893f143ec6e /Makefile | |
parent | e9854de484d2af3640c3adad9540e412bfd82bea (diff) | |
download | freebsd-ports-gnome-24ae85fec01ca14f008affbe50bff4e2c0f6b03d.tar.gz freebsd-ports-gnome-24ae85fec01ca14f008affbe50bff4e2c0f6b03d.tar.zst freebsd-ports-gnome-24ae85fec01ca14f008affbe50bff4e2c0f6b03d.zip |
The describe target now uses `\' as a separator, so correct the print-index
target in here. Also make the print-index target display the maintainers
address for easy griping.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.13 1995/03/21 03:12:17 jkh Exp $ +# $Id: Makefile,v 1.14 1995/03/21 03:57:19 jkh Exp $ # SUBDIR= archivers audio cad comms databases devel editors games graphics \ japanese lang mail math net news print shells utils x11 @@ -13,4 +13,4 @@ ${.CURDIR}/INDEX: @echo " Done." print-index: ${.CURDIR}/INDEX - awk -F@ '{ printf("Port:\t%s\nPath:\t%s\nInfo:\t%s\n\n", $$1, $$2, $$4); }' < ${.CURDIR}/INDEX + awk -F\| '{ printf("Port:\t%s\nPath:\t%s\nInfo:\t%s\nMaint:\t%s\n\n", $$1, $$2, $$4, $$6); }' < ${.CURDIR}/INDEX |