diff options
author | midipix <writeonce@midipix.org> | 2016-11-27 04:29:52 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-30 09:22:12 -0500 |
commit | 128875d86ecf2e8e808f593f7e7cfde778e68e3b (patch) | |
tree | 766f22d191d37d608353d39626a3a4a0bcf502cd /sofort | |
parent | 283803f4dba1c92c6c7db18b6f3b46c0fa62e0ff (diff) | |
download | ntapi-128875d86ecf2e8e808f593f7e7cfde778e68e3b.tar.bz2 ntapi-128875d86ecf2e8e808f593f7e7cfde778e68e3b.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 |