diff options
author | midipix <writeonce@midipix.org> | 2016-11-27 04:29:52 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-30 09:23:36 -0500 |
commit | cb254bf263819a2c5d62f3c72c6af6c14e46982c (patch) | |
tree | d6c3794121eecd7d8a14848792229efa3fc1328d | |
parent | dab371bd24cd2ee34c5bae2f6c479e8f0c8b1784 (diff) | |
download | sofort-cb254bf263819a2c5d62f3c72c6af6c14e46982c.tar.bz2 sofort-cb254bf263819a2c5d62f3c72c6af6c14e46982c.tar.xz |
build system: sofort/version.mk: install-solink: fix build target definition.
-rw-r--r-- | sofort/version.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sofort/version.mk b/sofort/version.mk index 930a295..d2dd252 100644 --- a/sofort/version.mk +++ b/sofort/version.mk @@ -28,9 +28,9 @@ package-install-solink: install-solink # libfoo.so (common) install-solink: install-lib - rm -f $@.tmp - ln -s $(DSO_VER) $@.tmp - mv $@.tmp $(DESTDIR)$(LIBDIR)/$(DSO_SOLINK) + rm -f $(SHARED_SOLINK).tmp + ln -s $(DSO_VER) $(SHARED_SOLINK).tmp + mv $(SHARED_SOLINK).tmp $(DESTDIR)$(LIBDIR)/$(DSO_SOLINK) $(SHARED_SOLINK): $(SHARED_LIB) rm -f $@.tmp |