From 542bc8ee466d7a42c85bc160ab2b6529410211d6 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Wed, 4 Jun 2008 08:57:14 +0000 Subject: - fix typo (have to check the content, not if true) --- Makerules | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makerules b/Makerules index dffd2ac1d..dcc84d6a7 100644 --- a/Makerules +++ b/Makerules @@ -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 -- cgit v1.2.3