summaryrefslogtreecommitdiff
path: root/misc/uClibc++
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-04-19 18:35:06 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-04-19 18:35:06 -0600
commitcce5af04eab27f136d48a5d06f5ac97b22e6b627 (patch)
treeee0ba220bf6921fa4f2d7221dd991b5f8e782b56 /misc/uClibc++
parent2d32b627f6f91e9f70ea20a481adf91dd8d27e99 (diff)
downloadnuttx-cce5af04eab27f136d48a5d06f5ac97b22e6b627.tar.gz
nuttx-cce5af04eab27f136d48a5d06f5ac97b22e6b627.tar.bz2
nuttx-cce5af04eab27f136d48a5d06f5ac97b22e6b627.zip
Fix comments, references to the old SVN, and links to the old SVN. Replace with equivalent GIT info
Diffstat (limited to 'misc/uClibc++')
-rwxr-xr-xmisc/uClibc++/README.txt2
-rwxr-xr-xmisc/uClibc++/compare.sh4
-rwxr-xr-xmisc/uClibc++/install.sh4
3 files changed, 5 insertions, 5 deletions
diff --git a/misc/uClibc++/README.txt b/misc/uClibc++/README.txt
index 8d306fd5a..3408919bf 100755
--- a/misc/uClibc++/README.txt
+++ b/misc/uClibc++/README.txt
@@ -30,7 +30,7 @@ installation script is provided at misc/uClibc++/install.sh that can be used
to install the uClibc++ components into the NuttX source tree.
The install script takes only a single arguement: The path to the nuttx
-directory. If your directory structure is the same as the SVN structure
+directory. If your directory structure is the same as the GIT structure
(with misc/ and nuttx/ at the same level), then uClibc++ can be installed
using this command executed from the misc/uClibc++ directory:
diff --git a/misc/uClibc++/compare.sh b/misc/uClibc++/compare.sh
index ead5e5d69..e6fafd48c 100755
--- a/misc/uClibc++/compare.sh
+++ b/misc/uClibc++/compare.sh
@@ -90,7 +90,7 @@ fi
echo "##### Comparing libxx"
-filelist=`find libxx -type f | fgrep -v '.svn'`
+filelist=`find libxx -type f`
for file in $filelist; do
diff -u $file ${nuttx_path}/${file}
@@ -99,7 +99,7 @@ done
echo ""
echo "##### Comparing include"
-filelist=`find include -type f | fgrep -v '.svn'`
+filelist=`find include -type f`
for file in $filelist; do
diff -u $file ${nuttx_path}/${file}
diff --git a/misc/uClibc++/install.sh b/misc/uClibc++/install.sh
index d0bf8e211..e60f0fc9c 100755
--- a/misc/uClibc++/install.sh
+++ b/misc/uClibc++/install.sh
@@ -311,13 +311,13 @@ fi
echo "Installing uClibc++ in the NuttX source tree"
-filelist=`find libxx -type f | fgrep -v '.svn'`
+filelist=`find libxx -type f`
for file in $filelist; do
install -D $file ${nuttx_path}/${file}
done
-filelist=`find include -type f | fgrep -v '.svn'`
+filelist=`find include -type f`
for file in $filelist; do
install -D $file ${nuttx_path}/${file}