diff options
author | Eike Rathke <erack@redhat.com> | 2013-03-05 14:08:49 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2013-03-05 14:09:11 +0100 |
commit | 4f25fac0bdf76f035bd521660d8fd74e8b7e0137 (patch) | |
tree | 7eba43db515ec8839945e023954100a216a665dd | |
parent | d5405d4c42459304a1152b7a1722a1627f775b07 (diff) |
so there's no need anymore for ls and grep out workdir
Change-Id: I991ab1ff60d056ba8395f39a197d6b8456b7ba53
-rwxr-xr-x | solenv/bin/create-ids | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/create-ids b/solenv/bin/create-ids index 045bae3ae3d5..f820882db27d 100755 --- a/solenv/bin/create-ids +++ b/solenv/bin/create-ids @@ -19,7 +19,7 @@ fi # --with-outpath includes solver/$INPATH/inc if [ "$1" = "--with-outpath" ]; then - dirs="`ls -d */* | sed -e '/\(\/\(common\|unxlng\|unxsol\|unxmac\|wntmsc\|Jamfile\|cscope\.\|tags\|ID\)\)\|^\(clone\|solver\|workdir\|install\)\//d'` `ls -d solver/$INPATH/inc | sed -e '/^workdir\//d'`" + dirs="`ls -d */* | sed -e '/\(\/\(common\|unxlng\|unxsol\|unxmac\|wntmsc\|Jamfile\|cscope\.\|tags\|ID\)\)\|^\(clone\|solver\|workdir\|install\)\//d'` solver/$INPATH/inc" else dirs="`ls -d */* | sed -e '/\(\/\(common\|unxlng\|unxsol\|unxmac\|wntmsc\|Jamfile\|cscope\.\|tags\|ID\)\)\|^\(clone\|solver\|workdir\|install\)\//d'`" fi |