svn commit: trunk/uClibc
aldot at uclibc.org
aldot at uclibc.org
Wed Jun 4 08:57:14 UTC 2008
Author: aldot
Date: 2008-06-04 01:57:14 -0700 (Wed, 04 Jun 2008)
New Revision: 22209
Log:
- fix typo (have to check the content, not if true)
Modified:
trunk/uClibc/Makerules
Changeset:
Modified: trunk/uClibc/Makerules
===================================================================
--- trunk/uClibc/Makerules 2008-06-04 07:59:51 UTC (rev 22208)
+++ trunk/uClibc/Makerules 2008-06-04 08:57:14 UTC (rev 22209)
@@ -341,8 +341,9 @@
# Oh, and prepend a dot to the basename so i don't have to change my habit of
# calling 'size thefile.o*'
.depends.dep := $(foreach f,$(.depends.dep),$(dir $(f)).$(notdir $(f)))
+.depends.dep := $(wildcard $(.depends.dep))
-ifdef .depends.dep
+ifneq ($(strip $(.depends.dep)),)
-include $(.depends.dep)
endif
More information about the uClibc-cvs
mailing list