blob: 4968ed7bbaeebbdb786b718e3fe6d4796ad3d378 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# 08_all-Makefile.patches by Marcus D. Hanwell <cryos@gentoo.org>
#
# Link to ../lib with a higher precedence than /usr/lib - allows upgrades
--- client/Makefile.in 2005-12-05 01:28:26.000000000 +0000
+++ client/Makefile.in 2005-12-11 21:00:07.000000000 +0000
@@ -336,7 +336,7 @@
AM_CFLAGS = $(AM_CPPFLAGS)
AM_CXXFLAGS = $(AM_CPPFLAGS)
-AM_LDFLAGS =
+AM_LDFLAGS = -L../lib
# dependencies to make sure libs gets compiled before
# programs linking to them:
--- clientgui/Makefile.in 2005-12-11 21:07:55.000000000 +0000
+++ clientgui/Makefile.in 2005-12-11 21:07:29.000000000 +0000
@@ -354,7 +354,7 @@
AM_CFLAGS = $(AM_CPPFLAGS)
AM_CXXFLAGS = $(AM_CPPFLAGS)
-AM_LDFLAGS =
+AM_LDFLAGS = -L../lib
# dependencies to make sure libs gets compiled before
# programs linking to them:
|