diff options
author | Eike Rathke <erack@redhat.com> | 2017-06-01 19:18:23 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-06-01 19:18:38 +0200 |
commit | 9c32973e0ea91fbc1d9eb7daa55967c4a18f3f72 (patch) | |
tree | bee2a01d2a545b4e90265a699cb0254ad946ecbf /solenv/bin | |
parent | 6e79d226f49494d425d946f542ef834ad62da9f7 (diff) |
For --with-outpath include workdir generated files without UnpackedTar*
Change-Id: I07605c132432cb9454614368200e9c85695bea26
Diffstat (limited to 'solenv/bin')
-rwxr-xr-x | solenv/bin/create-ids | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/solenv/bin/create-ids b/solenv/bin/create-ids index a6a2c1f57f80..67f35d17c942 100755 --- a/solenv/bin/create-ids +++ b/solenv/bin/create-ids @@ -9,9 +9,9 @@ # create ID file for the whole LibO tree. run it in toplevel dir -# TODO: should this include workdir headers? if [ "$1" = "--with-outpath" ]; then - dirs="$(ls -d ./*/* | sed -e '/\(\/\(cscope\.\|tags\|ID\)\)\|^\.\/\(workdir\|instdir\)\//d')" + # Include workdir generated files but without workdir/UnpackedTarball workdir/UnpackedTarget + dirs="$(ls -d ./*/* | sed -e '/\(\/\(cscope\.\|tags\|ID\)\)\|^\.\/\(workdir\/UnpackedTar\|\(instdir\/\)\)/d')" else dirs="$(ls -d ./*/* | sed -e '/\(\/\(cscope\.\|tags\|ID\)\)\|^\.\/\(workdir\|instdir\)\//d')" fi |