diff options
author | Eike Rathke <erack@redhat.com> | 2017-06-01 19:00:11 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-06-01 19:01:43 +0200 |
commit | 6e79d226f49494d425d946f542ef834ad62da9f7 (patch) | |
tree | 3a0e86fc602c609d4009081bb43ffd5af0f21002 /solenv/bin | |
parent | 090e33dfece35b9f2ff7248b9ef947317392bab9 (diff) |
'clone' directory is gone and might even be a legit module name in future
Change-Id: Iba0cf3345655a8ca61a4d55b9f045c713683f97b
Diffstat (limited to 'solenv/bin')
-rwxr-xr-x | solenv/bin/create-ids | 4 | ||||
-rwxr-xr-x | solenv/bin/create-tags | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/solenv/bin/create-ids b/solenv/bin/create-ids index 702c951eb413..a6a2c1f57f80 100755 --- a/solenv/bin/create-ids +++ b/solenv/bin/create-ids @@ -11,8 +11,8 @@ # TODO: should this include workdir headers? if [ "$1" = "--with-outpath" ]; then - dirs="$(ls -d ./*/* | sed -e '/\(\/\(cscope\.\|tags\|ID\)\)\|^\.\/\(clone\|workdir\|instdir\)\//d')" + dirs="$(ls -d ./*/* | sed -e '/\(\/\(cscope\.\|tags\|ID\)\)\|^\.\/\(workdir\|instdir\)\//d')" else - dirs="$(ls -d ./*/* | sed -e '/\(\/\(cscope\.\|tags\|ID\)\)\|^\.\/\(clone\|workdir\|instdir\)\//d')" + dirs="$(ls -d ./*/* | sed -e '/\(\/\(cscope\.\|tags\|ID\)\)\|^\.\/\(workdir\|instdir\)\//d')" fi mkid --lang-map="$(dirname "$0")"/id-lang.map --include='C C++ asm perl java make' --statistics $dirs diff --git a/solenv/bin/create-tags b/solenv/bin/create-tags index 47400f55c68d..994aa1686c02 100755 --- a/solenv/bin/create-tags +++ b/solenv/bin/create-tags @@ -18,7 +18,7 @@ omnicppoptions="--c++-kinds=+p --fields=+iaS --extra=+q" $ctags -h "+.hdl.hrc" --langmap=c:+.hrc.src,c++:+.hdl $saloptions $omnicppoptions \ --languages=-HTML,Java,JavaScript \ -R --exclude=instdir --exclude=instdir_for_build --exclude=workdir --exclude=workdir_for_build \ - --exclude=clone --exclude=external --totals=yes ${SRCDIR:-*} + --exclude=external --totals=yes ${SRCDIR:-*} if test -d workdir_for_build; then w=workdir_for_build |