Module: sip-router
Branch: kamailio_3.0
Commit: ae36bc7daa0da6d32b7818c2cc91dfe469233e0b
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=ae36bc7…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Mon Mar 22 16:33:04 2010 +0100
makefile: fix install utils
- previous commit broke installation of utils by a c&p error to
non-empty test to utils variable (r => ut)
- extra check for directory existence
- credits to Federico M. and Nathaniel L Keeling III for reporting
(cherry picked from commit 641a41b6e9cf1387c24dd9f863db978c8018df80)
---
Makefile | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 38b0b96..51e2f30 100644
--- a/Makefile
+++ b/Makefile
@@ -1006,8 +1006,10 @@ install-utils: utils $(bin_prefix)/$(bin_dir)
fi ; \
done; true
@for ut in $(C_INSTALL_UTILS) "" ; do \
- if [ -n "$$r" ]; then \
- $(call try_err, $(MAKE) -C "$${ut}" install-if-newer ) ;\
+ if [ -n "$$ut" ]; then \
+ if [ -d "$$ut" ]; then \
+ $(call try_err, $(MAKE) -C "$${ut}" install-if-newer ) ;\
+ fi ;\
fi ; \
done; true