From 0b861eafd5bf5d6cdb2c602485310e3733052a10 Mon Sep 17 00:00:00 2001 From: patacongo Date: Wed, 31 Oct 2012 22:06:31 +0000 Subject: Convert configs/sim/ostest to use mconf tool; Add configs/sim/cxxtest git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5285 42af7a65-404d-4744-a932-0658087f49c3 --- misc/uClibc++/install.sh | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'misc') diff --git a/misc/uClibc++/install.sh b/misc/uClibc++/install.sh index 001a71bfe..3a2bb66f2 100755 --- a/misc/uClibc++/install.sh +++ b/misc/uClibc++/install.sh @@ -302,11 +302,17 @@ fi echo "Installing uClibc++ in the NuttX source tree" -cp -a ./libxx/* ${libxx_srcdir}/. || - { echo "Copy from ./libxx/* to ${libxx_srcdir}/. failed"; exit 1; } +filelist=`find libxx -type f | fgrep -v '.svn'` -cp -a ./include/* ${nuttx_incdir}/. || - { echo "Copy from ./include/* ${nuttx_incdir}/. failed"; exit 1; } +for file in $filelist; do + install -D $file ${nuttx_path}/${file} +done + +filelist=`find include -type f | fgrep -v '.svn'` + +for file in $filelist; do + install -D $file ${nuttx_path}/${file} +done echo "Installation suceeded" echo "" -- cgit v1.2.3