X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=test%2Fget_source_list.sh;h=b58f682450cba73fe3c09270c79bbe4cf70e16eb;hb=a271c7198a59f307b43c74cc3f2741ece9bafcbc;hp=4755c439e4adebccdf89536e44b492867372b04c;hpb=a41152d79cfa6286e6fb3255dc2d98f5c3562cb6;p=bertos.git diff --git a/test/get_source_list.sh b/test/get_source_list.sh index 4755c439..b58f6824 100755 --- a/test/get_source_list.sh +++ b/test/get_source_list.sh @@ -47,10 +47,10 @@ if [ $# \< 2 ] ; then fi #Create a list of source file whitout a cpu specific source -GEN_SRC=`find . \( -name '\.svn' -prune -o -path $CPU_DIR -prune -o -path $APP_DIR -prune -o -path $OS_DIR -prune -o -path $EMUL_DIR -prune \) -o -name "*.${2}" -print | xargs` +GEN_SRC=`find . \( -name \.svn -prune -o -path $CPU_DIR -prune -o -path $APP_DIR -prune -o -path $OS_DIR -prune -o -path $EMUL_DIR -prune \) -o -name *.${2} -print | xargs` #Select c and asm sources for selected cpu target -TRG_SRC=`find ${CPU_DIR}/${1} -name "\.svn" -prune -o -name "*.${2}" -print | xargs` +TRG_SRC=`find ${CPU_DIR}/${1} -name \.svn -prune -o -name *.${2} -print | xargs` #Generate a list of all source for each cpu SRC_ALL=${GEN_SRC}" "${TRG_SRC}