summaryrefslogtreecommitdiff
path: root/nuttx/tools
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-02-27 21:17:21 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-02-27 21:17:21 +0000
commit148cde5e982950ad5836fa96baa466de842e1c14 (patch)
treebf737b367b91c5da81345eb21016b07400d7a72f /nuttx/tools
parentf6b81a790c28d7d36d9de33810df5270c1ebbfd7 (diff)
downloadnuttx-148cde5e982950ad5836fa96baa466de842e1c14.tar.gz
nuttx-148cde5e982950ad5836fa96baa466de842e1c14.tar.bz2
nuttx-148cde5e982950ad5836fa96baa466de842e1c14.zip
Finally, a clean SDCC compile
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@20 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/tools')
-rwxr-xr-xnuttx/tools/mkdeps.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/tools/mkdeps.sh b/nuttx/tools/mkdeps.sh
index 54ffbb1ee..c2b81ec2e 100755
--- a/nuttx/tools/mkdeps.sh
+++ b/nuttx/tools/mkdeps.sh
@@ -53,7 +53,7 @@ for i in $* ; do
cflags=$args
args=
;;
- --debug )
+ --dep-debug )
set -x
;;
*)
@@ -75,6 +75,6 @@ fi
for file in $files ; do
$cc -M $cflags $file || \
- { echo "$cc -M $cflags $file FAILED" ; exit 3 ; }
+ { echo "# $cc -M $cflags $file FAILED" ; exit 3 ; }
done