diff options
author | Evgeny Khramtsov <xramtsov@gmail.com> | 2014-11-06 21:11:17 +0300 |
---|---|---|
committer | Evgeny Khramtsov <xramtsov@gmail.com> | 2014-11-06 21:11:17 +0300 |
commit | 7138cc56333ffd16eb4c0483b4b2421d12cb6977 (patch) | |
tree | afcf4940d3fce56da4d7b296ed2eb02694bfc064 | |
parent | Merge pull request #335 from weiss/avoid-carbon-dups (diff) | |
parent | Fix "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.in | 2 |
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) |