Skip to content
Snippets Groups Projects
Commit 6f8f61db authored by Jason Abernathy's avatar Jason Abernathy Committed by Janet Anderson
Browse files

Only remove last occurrence of shrlib version string.

parent e48ca8a6
No related branches found
No related tags found
No related merge requests found
......@@ -387,7 +387,7 @@ $(INSTALL_SHRLIBS): $(INSTALL_SHRLIB)/%: %
ifneq ($(SHRLIB_SUFFIX),.dll)
ifneq (,$(strip $(SHRLIB_VERSION)))
@$(RM) $(subst .$(SHRLIB_VERSION),,$@)
ln -s $< $(subst .$(SHRLIB_VERSION),,$@)
ln -s $< $(@:.$(SHRLIB_VERSION)=)
endif # SHRLIB_VERSION
endif # SHRLIB_SUFFIX
......@@ -410,7 +410,7 @@ $(INSTALL_LOADABLE_SHRLIBS): $(INSTALL_SHRLIB)/%: %
@$(INSTALL_LIBRARY) -d -m 555 $< $(INSTALL_SHRLIB)
ifneq (,$(strip $(LOADABLE_SHRLIB_VERSION)))
@$(RM) $(subst .$(LOADABLE_SHRLIB_VERSION),,$@)
ln -s $< $(subst .$(LOADABLE_SHRLIB_VERSION),,$@)
ln -s $< $(@:.$(LOADABLE_SHRLIB_VERSION)=)
endif # LOADABLE_SHRLIB_VERSION
$(INSTALL_CONFIG)/%: %
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment