Fix (hopefully) some oversights in recent Bison cleanup patch.
[PostgreSQL.git] / src / tools / make_mkid
blobefaf75bc3379d18b8dd72949005eacc837682afd
1 #!/bin/sh
3 # $PostgreSQL$
5 mkid `find \`pwd\`/ \( -name _deadcode -a -prune \) -o \
6 -type f -name '*.[chyl]' -print|sed 's;//;/;g'`
8 find . -name 'CVS' -prune -o -type d -print |while read DIR
9 do
10 [ "$DIR" != "." ] && ln -f -s `echo "$DIR" | sed 's;/[^/]*;/..;g'`/ID $DIR/ID
11 done