put space between source and header files in checkresources and getresources scripts

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2015-12-15 18:56:05 +02:00
parent 630483f3aa
commit 2b0bac3f44
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ for d in $(find $(pwd) $builddir/include $builddir/privateinclude -type d);do
done
allfiles="$(find -iname '*.cpp' -printf '%P\n')"
allfiles+="$(find -iname '*.h' -printf '%P\n')"
allfiles+=" $(find -iname '*.h' -printf '%P\n')"
for i in $allfiles;do
if [ -n "$(moc -nw $i $autoinc)" ];then
found="no"

View file

@ -9,7 +9,7 @@ for d in $(find $(pwd) $builddir/include $builddir/privateinclude -type d);do
done
allfiles="$(find -iname '*.cpp' -printf '%P\n')"
allfiles+="$(find -iname '*.h' -printf '%P\n')"
allfiles+=" $(find -iname '*.h' -printf '%P\n')"
for i in $allfiles;do
if [ -n "$(moc -nw $i $autoinc)" ];then
echo ' ${CMAKE_CURRENT_SOURCE_DIR}/'$i