summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2011-01-21 20:49:43 +0100
committerThorsten Behrens <tbehrens@novell.com>2011-01-26 15:58:55 +0100
commitd06c295137b3d787d2d930dc10ef98f984ced72a (patch)
tree1814a5a7cae876b62bba27b25ee57d1e35f1a488
parent9e6b1553e04ed17d9f1481364c672f609a9b12e3 (diff)
fix KDE3 library search order (fdo#32797)
Use LINKFLAGS instead of STDLIBS, as the latter comes way too late in the link command and may result in some stray -L/usr/lib getting before -L$KDEDIR/lib. Since KDE4 libs often tend to be installed under /usr while KDE3 libs are often somewhere else such as /opt/kde3/lib, this could cause using wrong libraries. (cherry picked from commit b13f9e3374f8f605e6bf6f7be8819142060c37e9) Signed-off-by: Thorsten Behrens <tbehrens@novell.com>
-rw-r--r--fpicker/source/unx/kde/makefile.mk6
1 files changed, 2 insertions, 4 deletions
diff --git a/fpicker/source/unx/kde/makefile.mk b/fpicker/source/unx/kde/makefile.mk
index dcb16d9f23..b6a8a7ca7c 100644
--- a/fpicker/source/unx/kde/makefile.mk
+++ b/fpicker/source/unx/kde/makefile.mk
@@ -61,10 +61,8 @@ SLOFILES =\
APP1TARGET=$(TARGET)
APP1OBJS=$(SLOFILES)
APP1RPATH=BRAND
-APP1STDLIBS=\
- $(SALLIB) \
- $(KDE_LIBS) -lkio -lX11
-
+APP1LINKFLAGS=$(KDE_LIBS) -lkio -lX11
+APP1STDLIBS=$(SALLIB)
.ENDIF # "$(GUIBASE)" != "unx" || "$(ENABLE_KDE)" != "TRUE"