From 2b0bac3f443ff11e397d54e08fea795feb639644 Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Tue, 15 Dec 2015 18:56:05 +0200 Subject: [PATCH] put space between source and header files in checkresources and getresources scripts Signed-off-by: Ivailo Monev --- scripts/checkresources.sh | 2 +- scripts/getresources.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/checkresources.sh b/scripts/checkresources.sh index 0cc654a40..d56ce0b8c 100755 --- a/scripts/checkresources.sh +++ b/scripts/checkresources.sh @@ -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" diff --git a/scripts/getresources.sh b/scripts/getresources.sh index ad0717b94..91fad64e3 100755 --- a/scripts/getresources.sh +++ b/scripts/getresources.sh @@ -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