diff options
author | Christophe Romain <christophe.romain@process-one.net> | 2014-10-30 17:43:57 +0100 |
---|---|---|
committer | Christophe Romain <christophe.romain@process-one.net> | 2014-10-30 17:43:57 +0100 |
commit | 295681283aaea6a21a99bd4c72afd9b0a68c966e (patch) | |
tree | 9bb9c1b7c26a34f1ce8ce8910c0a817481a7b222 | |
parent | fix invalid path of jiffy.so on install #309 (diff) |
don't stop on error if jiffy.so symlink exists #309
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index d338df0d..c87d1af2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -157,7 +157,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;) + [ -f $(SODIR)/jiffy.so ] && (cd $(PRIVDIR); ln -s lib/jiffy.so; true) # # Translated strings $(INSTALL) -d $(MSGSDIR) |