diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-06-04 08:57:14 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-06-04 08:57:14 +0000 |
commit | 542bc8ee466d7a42c85bc160ab2b6529410211d6 (patch) | |
tree | d268745113dde018b05c76ecb024a13001a7a88f | |
parent | c8a4ed2b4113b628a8a152c1d7c07f71f5b37522 (diff) |
- fix typo (have to check the content, not if true)
-rw-r--r-- | Makerules | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -341,8 +341,9 @@ files.dep := $(libc-a-y) $(libc-so-y) $(libc-nonshared-y) \ # 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 |