diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1995-05-14 03:30:07 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1995-05-14 03:30:07 +0000 |
commit | c9dc84a5224b30f876aca7950ba9667f10a42b4b (patch) | |
tree | d8441e63488bf8611df96673021fc142d567b5f2 /shells/Makefile | |
parent | ed69276f3b3057aa2b01874de91a6b7abbf2326b (diff) | |
download | ports-c9dc84a5224b30f876aca7950ba9667f10a42b4b.tar.gz ports-c9dc84a5224b30f876aca7950ba9667f10a42b4b.zip |
Clean up subdir Makefiles. They now all look like this:
=====
# Id line
#
# RESTRICTED: restricted_port_1 (comment1)
# RESTRICTED: restricted_port_2 (comment2)
#
# BROKEN: broken_port_3 (comment3)
# BROKEN: broken_port_4 (comment4)
# BROKEN: broken_port_5 (comment5)
#
SUBDIR= good_port_1 good_port_2 ...
=====
Basically, the idea is to make it easy to find restricted or broken
ports by doing a "grep".
Notes
Notes:
svn path=/head/; revision=1740
Diffstat (limited to 'shells/Makefile')
-rw-r--r-- | shells/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shells/Makefile b/shells/Makefile index 9e77d2d8d42a..91bc1af26a55 100644 --- a/shells/Makefile +++ b/shells/Makefile @@ -1,5 +1,6 @@ -# $Id: Makefile,v 1.7 1995/04/23 09:01:41 asami Exp $ +# $Id: Makefile,v 1.8 1995/04/25 07:03:53 asami Exp $ # + SUBDIR= bash pdksh tcsh zsh .include <bsd.port.subdir.mk> |