Commit fb91a83e authored by Bruce Momjian's avatar Bruce Momjian

Back out make_mkid change.

parent 00750f3f
:
#!/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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment