summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-09 00:07:03 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-09 00:07:03 +0000
commit806f51d2d5a84e7745763155aea152614b5e244f (patch)
treed3411d2139cbbf2c5017498dfa63dbc810bb09b9
parent9efc8450ed3a65bd5216972c013be620444d3d50 (diff)
downloadpx4-nuttx-806f51d2d5a84e7745763155aea152614b5e244f.tar.gz
px4-nuttx-806f51d2d5a84e7745763155aea152614b5e244f.tar.bz2
px4-nuttx-806f51d2d5a84e7745763155aea152614b5e244f.zip
Turn off script debug
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@533 42af7a65-404d-4744-a932-0658087f49c3
-rwxr-xr-xnuttx/tools/link.sh4
-rwxr-xr-xnuttx/tools/winlink.sh4
2 files changed, 5 insertions, 3 deletions
diff --git a/nuttx/tools/link.sh b/nuttx/tools/link.sh
index ef41b3314..0b8ecfaff 100755
--- a/nuttx/tools/link.sh
+++ b/nuttx/tools/link.sh
@@ -33,7 +33,7 @@
# POSSIBILITY OF SUCH DAMAGE.
#
############################################################################
-set -x
+#set -x
src=$1
dest=$2
@@ -84,4 +84,4 @@ fi
# Create the soft link
ln -s "${src}" "${dest}" || \
- { echo "Failed to create link: $dest" ; exit 1 ; } \ No newline at end of file
+ { echo "Failed to create link: $dest" ; exit 1 ; }
diff --git a/nuttx/tools/winlink.sh b/nuttx/tools/winlink.sh
index 272fb9636..e94d26cc9 100755
--- a/nuttx/tools/winlink.sh
+++ b/nuttx/tools/winlink.sh
@@ -44,6 +44,7 @@
# as a replacement for the 'ln' command. This scrpt will simply copy the
# directory into the expected positiion.
#
+#set -x
src=$1
dest=$2
@@ -97,4 +98,5 @@ fi
cp -a "${src}" "${dest}" || \
{ echo "Failed to create link: $dest" ; rm -rf ${dest} ; exit 1 ; }
touch "${dest}/.fakelnk" || \
- { echo "Failed to touch ${dest}/.fakelnk" ; rm -rf ${dest} ; exit 1 ; } \ No newline at end of file
+ { echo "Failed to touch ${dest}/.fakelnk" ; rm -rf ${dest} ; exit 1 ; }
+