Gentoo Archives: gentoo-dev

From: Samuli Suominen <ssuominen@g.o>
To: gentoo-dev@l.g.o
Subject: Re: [gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in x11-plugins/wmfishtime/files: wmfishtime-1.24-gtk.patch
Date: Mon, 23 Jun 2014 04:22:37
Message-Id: 53A7AAA1.3060903@gentoo.org
In Reply to: Re: [gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in x11-plugins/wmfishtime/files: wmfishtime-1.24-gtk.patch by Jeroen Roovers
1 On 23/06/14 05:01, Jeroen Roovers wrote:
2 > On Sun, 22 Jun 2014 20:08:41 +0300
3 > Samuli Suominen <ssuominen@g.o> wrote:
4 >
5 >> LIBS = `$(PKG_CONFIG) gtk+-2.0 --libs` -lm -X11
6 > No, it should be
7 >
8 > LIBS = $(shell $(PKG_CONFIG) ...)
9 >
10 > or PKG_CONFIG will be called every time LIBS is evaluated.
11 >
12 > And while you're at it, why not call PKG_CONFIG on x11, too?
13 >
14 > LIBS = $(shell $(PKG_CONFIG) --libs gtk+-2.0 x11) -lm
15 >
16 >
17 > jer
18 >
19
20 Oops. You are right. Thanks.