Back out make_mkid change.

This commit is contained in:
Bruce Momjian 2005-06-04 18:20:43 +00:00
parent 00750f3f30
commit fb91a83e0e

View File

@ -1,10 +1,9 @@
:
#!/bin/sh
mkid `find \`pwd\`/ \( -name _deadcode -a -prune \) -o \
-type f -name '*.[chyl]' -print|sed 's;//;/;g'`
find . \( -name 'CVS' -prune -o -name '_xlk' -prune \) -o -type d -print |
while read DIR
find . -name 'CVS' -prune -o -type d -print |while read DIR
do
[ "$DIR" != "." ] && ln -f -s `echo "$DIR" | sed 's;/[^/]*;/..;g'`/ID $DIR/ID
done