mirror of
https://github.com/apache/nuttx.git
synced 2026-09-20 21:06:58 +08:00
tools/mkdep.sh should not report an error if there are no files on the command line
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3588 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
@@ -1735,3 +1735,5 @@
|
||||
build time
|
||||
* Makefile: Removed support for Pascal pcode interpreter. Support for that
|
||||
interpreter has been moved to apps/interpreter/Makefile.
|
||||
* tools/mkdep.sh: Should not report an error if there are no files on the command
|
||||
line. This happens normally in certain configurations.
|
||||
|
||||
+3
-3
@@ -156,9 +156,9 @@ if [ -z "$cc" ]; then
|
||||
fi
|
||||
|
||||
if [ -z "$files" ]; then
|
||||
echo "No files specified"
|
||||
show_usage
|
||||
exit 2
|
||||
# Don't report an error -- this happens normally in some configurations
|
||||
echo "# No files specified for dependency generataion"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Check if this compiler generates Cygwin/Linux paths or Windows paths
|
||||
|
||||
Reference in New Issue
Block a user