We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d12be5c commit 2042dafCopy full SHA for 2042daf
src/tools/make_ctags
@@ -14,5 +14,5 @@ sort tags >/tmp/$$ && mv /tmp/$$ tags
14
15
find . -name 'CVS' -prune -o -type d -print |while read DIR
16
do
17
- [ "$DIR" != "." ] && ln -f -s `pwd`/tags $DIR/tags
+ [ "$DIR" != "." ] && ln -f -s `echo "$DIR" | sed 's;/[^/]*;/..;g'`/tags $DIR/tags
18
done
src/tools/make_mkid
@@ -5,5 +5,5 @@ mkid `find \`pwd\`/ \( -name _deadcode -a -prune \) -o \
5
6
7
8
- [ "$DIR" != "." ] && ln -f -s `pwd`/ID $DIR/ID
+ [ "$DIR" != "." ] && ln -f -s `echo "$DIR" | sed 's;/[^/]*;/..;g'`/ID $DIR/ID
9
0 commit comments