Fix "make install" without JSON support

Don't bail out during "make install" when ./configure was called without
"--enable-json".
This commit is contained in:
Holger Weiss 2014-11-06 17:11:15 +01:00
parent 25e5253f33
commit f95f22aea0
1 changed files with 1 additions and 1 deletions

View File

@ -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)