Magellan Linux

Contents of /trunk/spidermonkey/patches/spidermonkey-1.8.5-fix-install-symlinks.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1879 - (show annotations) (download)
Fri Aug 17 10:59:32 2012 UTC (11 years, 8 months ago) by niro
File size: 484 byte(s)
-fix install
1 https://bugzilla.mozilla.org/show_bug.cgi?id=628723#c43
2
3 --- js/src/Makefile.in
4 +++ js/src/Makefile.in
5 @@ -888,8 +888,8 @@
6 ifeq (,$(HOST_BIN_SUFFIX))
7 mv -f $(SHLIB_ANY_VER) $(SHLIB_EXACT_VER)
8 @[ ! -h $(SHLIB_ABI_VER) ] || rm -f $(SHLIB_ABI_VER)
9 - ln -s $(SHLIB_EXACT_VER) $(SHLIB_ABI_VER)
10 - ln -s $(SHLIB_ABI_VER) $(SHLIB_ANY_VER)
11 + ln -s $(notdir $(SHLIB_EXACT_VER)) $(SHLIB_ABI_VER)
12 + ln -s $(notdir $(SHLIB_ABI_VER)) $(SHLIB_ANY_VER)
13 endif
14 endif
15 ifneq (,$(IMPORT_LIBRARY))