From 77b037974e46f78a0c6746753bf8d1c07b9630fc Mon Sep 17 00:00:00 2001 From: asterix Date: Tue, 10 Jun 2008 14:34:39 +0000 Subject: [PATCH] Remove unneeded double mark. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1428 38d2e660-2303-0410-9eaa-f027e97ec537 --- test/get_source_list.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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} -- 2.25.1