aboutsummaryrefslogtreecommitdiff
path: root/nxcompext/Makefile.in
diff options
context:
space:
mode:
authorMihai Moldovan <ionic@ionic.de>2015-03-16 03:29:16 +0100
committerMihai Moldovan <ionic@ionic.de>2015-03-16 03:29:16 +0100
commitd8de5928e1e7a0677ed2d38fa4d9f53a58514ebe (patch)
treefcdefeeaa0b2484ea747a3d74891203a39689c05 /nxcompext/Makefile.in
parent638e31c2f33723123d35ce65db88071a1be5cdb0 (diff)
downloadnx-libs-d8de5928e1e7a0677ed2d38fa4d9f53a58514ebe.tar.gz
nx-libs-d8de5928e1e7a0677ed2d38fa4d9f53a58514ebe.tar.bz2
nx-libs-d8de5928e1e7a0677ed2d38fa4d9f53a58514ebe.zip
nx{comp{,ext,shad},proxy}: try really hard to find makedepend. Do not fail if it is not available.
Diffstat (limited to 'nxcompext/Makefile.in')
-rw-r--r--nxcompext/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/nxcompext/Makefile.in b/nxcompext/Makefile.in
index 8777ceeed..da464bd6d 100644
--- a/nxcompext/Makefile.in
+++ b/nxcompext/Makefile.in
@@ -152,9 +152,9 @@ depends: depend.status
depend: depend.status
depend.status:
- if [ -x $(MAKEDEPEND) ] ; then \
+ if [ -n "$(MAKEDEPEND)" ] && [ -x "$(MAKEDEPEND)" ] ; then \
$(MAKEDEPEND) $(CXXINCLUDES) $(CCINCLUDES) \
- $(DEPENDINCLUDES) -f Makefile $(MSRC) $(CSRC) \
+ $(DEPENDINCLUDES) -f Makefile $(MSRC) $(CSRC) \
$(CXXSRC) 2>/dev/null; \
fi
touch depend.status