mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 21:02:25 +02:00
don't include build-ext in tags
This commit is contained in:
parent
43c3c621a8
commit
2dd33e5334
1 changed files with 2 additions and 2 deletions
|
@ -2,13 +2,13 @@
|
|||
|
||||
rm -f TAGS
|
||||
|
||||
find . -name *.h -print | while read I
|
||||
find . -name *.h -print | grep -v build-ext |while read I
|
||||
do
|
||||
etags --append "$I"
|
||||
done
|
||||
|
||||
|
||||
find . -name *.cpp -print | grep -v 'moc_' | while read I
|
||||
find . -name *.cpp -print | grep -v 'moc_' | grep -v build-ext | while read I
|
||||
do
|
||||
etags --append "$I"
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue