aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Khramtsov <xramtsov@gmail.com>2014-11-06 21:11:17 +0300
committerEvgeny Khramtsov <xramtsov@gmail.com>2014-11-06 21:11:17 +0300
commit7138cc56333ffd16eb4c0483b4b2421d12cb6977 (patch)
treeafcf4940d3fce56da4d7b296ed2eb02694bfc064
parentMerge pull request #335 from weiss/avoid-carbon-dups (diff)
parentFix "make install" without JSON support (diff)
Merge pull request #337 from weiss/fix-install-without-json
Fix "make install" without JSON support
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 6f48bc0d7..575b0bdc7 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)