Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 310297 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-1 / +23 lines)
Line  Link Here
0
-- icu/source/tools/ctestfw/Makefile.in
0
++ icu/source/tools/ctestfw/Makefile.in
Lines 79-84 Link Here
79
install-local: install-library
79
install-local: install-library
80
80
81
install-library: all-local
81
install-library: all-local
82
	$(MKINSTALLDIRS) $(DESTDIR)$(libdir)
83
ifneq ($(ENABLE_STATIC),)
84
	$(INSTALL-L) $(TARGET) $(DESTDIR)$(libdir)
85
endif
86
ifneq ($(ENABLE_SHARED),)
87
	$(INSTALL-L) $(FINAL_SO_TARGET) $(DESTDIR)$(libdir)
88
ifneq ($(FINAL_SO_TARGET),$(SO_TARGET))
89
	cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)) $(notdir $(SO_TARGET))
90
ifneq ($(FINAL_SO_TARGET),$(MIDDLE_SO_TARGET))
91
	cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)) $(notdir $(MIDDLE_SO_TARGET))
92
endif
93
endif
94
ifneq ($(IMPORT_LIB_EXT),)
95
	$(INSTALL-L) $(FINAL_IMPORT_LIB) $(DESTDIR)$(libdir)
96
ifneq ($(IMPORT_LIB),$(FINAL_IMPORT_LIB))
97
	cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LIB)) $(notdir $(IMPORT_LIB))
98
endif
99
ifneq ($(MIDDLE_IMPORT_LIB),$(FINAL_IMPORT_LIB))
100
	cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LIB)) $(notdir $(MIDDLE_IMPORT_LIB))
101
endif
102
endif
103
endif
82
104
83
dist-local:
105
dist-local:
84
106

Return to bug 310297