mirror of
https://github.com/postgres/postgres.git
synced 2025-06-03 00:02:26 -04:00
Prevent _deadcode from showing in ctags and mkid
This commit is contained in:
parent
a8ae19ec3d
commit
662371cc5d
@ -1,7 +1,9 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
trap "rm -f /tmp/$$" 0 1 2 3 15
|
trap "rm -f /tmp/$$" 0 1 2 3 15
|
||||||
rm -f ./tags
|
rm -f ./tags
|
||||||
find `pwd`/ -type f -name '*.[chyl]' -print|xargs ctags -d -t -a -f tags
|
find `pwd`/ \( -name _deadcode -a -prune \) -o \
|
||||||
|
-type f -name '*.[chyl]' -print|xargs ctags -d -t -a -f tags
|
||||||
|
|
||||||
sort tags >/tmp/$$ && mv /tmp/$$ tags
|
sort tags >/tmp/$$ && mv /tmp/$$ tags
|
||||||
|
|
||||||
find . -type d -print |while read DIR
|
find . -type d -print |while read DIR
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
find `pwd`/ -type f -name '*.[chyl]' -print|sed 's;//;/;g' | mkid -S.gen=C -
|
find `pwd`/ \( -name _deadcode -a -prune \) -o \
|
||||||
|
-type f -name '*.[chyl]' -print|sed 's;//;/;g' | mkid -S.gen=C -
|
||||||
|
|
||||||
find . -type d -print |while read DIR
|
find . -type d -print |while read DIR
|
||||||
do
|
do
|
||||||
|
Loading…
x
Reference in New Issue
Block a user