summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorHolger Weiss <holger@zedat.fu-berlin.de>2014-11-06 17:11:15 +0100
committerHolger Weiss <holger@zedat.fu-berlin.de>2014-11-06 17:11:15 +0100
commitf95f22aea08911a1301498739a6b52793592282d (patch)
treeafcf4940d3fce56da4d7b296ed2eb02694bfc064 /Makefile.in
parentMerge pull request #335 from weiss/avoid-carbon-dups (diff)
Fix "make install" without JSON support
Don't bail out during "make install" when ./configure was called without "--enable-json".
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 6f48bc0d..575b0bdc 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -161,7 +161,7 @@ install: all
# Binary system libraries
$(INSTALL) -d $(SODIR)
$(INSTALL) -m 644 $(DLLs) $(SODIR)
- [ -f $(SODIR)/jiffy.so ] && (cd $(PRIVDIR); ln -s lib/jiffy.so; true)
+ -[ -f $(SODIR)/jiffy.so ] && (cd $(PRIVDIR); ln -s lib/jiffy.so; true)
#
# Translated strings
$(INSTALL) -d $(MSGSDIR)