diff options
author | 2005-06-03 00:49:17 +0000 | |
---|---|---|
committer | 2005-06-03 00:49:17 +0000 | |
commit | 717a061b0b912c7be170c3cc2ea538cc3b8caad2 (patch) | |
tree | 3bf5b00997ee4fca30d3b1d36ed037633e0f294e /media-libs/libjsw/files | |
parent | updating maintainer info in metadata.xml (diff) | |
download | gentoo-2-717a061b0b912c7be170c3cc2ea538cc3b8caad2.tar.gz gentoo-2-717a061b0b912c7be170c3cc2ea538cc3b8caad2.tar.bz2 gentoo-2-717a061b0b912c7be170c3cc2ea538cc3b8caad2.zip |
Make sure we search custom lib paths before system paths so broken libs dont screw us #94867 by ferret.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'media-libs/libjsw/files')
-rw-r--r-- | media-libs/libjsw/files/libjsw-1.5.5-liborder.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/media-libs/libjsw/files/libjsw-1.5.5-liborder.patch b/media-libs/libjsw/files/libjsw-1.5.5-liborder.patch new file mode 100644 index 000000000000..0def9ba95ad0 --- /dev/null +++ b/media-libs/libjsw/files/libjsw-1.5.5-liborder.patch @@ -0,0 +1,14 @@ +Search our custom $(LIB_DIRS) path before the stuff +gtk-config injects in $(LIBS). + +http://bugs.gentoo.org/94867 + +--- jscalibrator/Makefile ++++ jscalibrator/Makefile +@@ -132,5 +132,5 @@ + modules: $(OBJ_C) $(OBJ_CPP) + @echo -n "Linking modules..." +- @$(CPP) $(OBJ_C) $(OBJ_CPP) -o $(BIN) $(LIBS) $(LIB_DIRS) ++ @$(CPP) $(OBJ_C) $(OBJ_CPP) -o $(BIN) $(LIB_DIRS) $(LIBS) + @echo -n " " + @-$(LS) $(LSFLAGS) $(BIN) |