diff options
author | midipix <writeonce@midipix.org> | 2016-11-27 04:29:52 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-30 09:22:17 -0500 |
commit | f93c65aee9efa71628babcc4768302b1b97e970e (patch) | |
tree | d3b25323993ae5eab7515d1d459f0bdc565f70d8 /sofort | |
parent | 1524fda18c230609a8d415faeba78e16551132b7 (diff) | |
download | ntcon-f93c65aee9efa71628babcc4768302b1b97e970e.tar.bz2 ntcon-f93c65aee9efa71628babcc4768302b1b97e970e.tar.xz |
build system: sofort/version.mk: install-solink: fix build target definition.
Diffstat (limited to 'sofort')
-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 |