summaryrefslogtreecommitdiff
blob: 9d0e1f2aaca3a5f8ca17429ffe4d2da8f5cfb759 (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
26
27
28
29
30
From f23aea30c608f73b5bfc0b60363757c7f783d772 Mon Sep 17 00:00:00 2001
From: Gilles Dartiguelongue <eva@gentoo.org>
Date: Sun, 26 Apr 2009 21:57:27 +0200
Subject: [PATCH] Avoid re-linking to system's libgnomekbd

 Fix suggested by vaiper on https://bugs.gentoo.org/show_bug.cgi?id=265428
---
 libgnomekbd/Makefile.am |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libgnomekbd/Makefile.am b/libgnomekbd/Makefile.am
index 65b77b7..6d2fa49 100644
--- a/libgnomekbd/Makefile.am
+++ b/libgnomekbd/Makefile.am
@@ -33,9 +33,9 @@ libgnomekbd_la_LDFLAGS = $(common_LDFLAGS)
 libgnomekbd_la_LIBADD =  $(common_LIBADD)
 
 libgnomekbdui_la_LDFLAGS = $(common_LDFLAGS)
-libgnomekbdui_la_LIBADD =  $(common_LIBADD) \
-                           $(GTK_LIBS) \
-                           libgnomekbd.la
+libgnomekbdui_la_LIBADD = libgnomekbd.la \
+                           $(common_LIBADD) \
+                           $(GTK_LIBS)
 
 libgnomekbd_la_SOURCES = \
                          gkbd-desktop-config.c \
-- 
1.6.2.3