Gentoo Archives: gentoo-commits

From: "Matti Bickel (mabi)" <mabi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/lua/files: lua-5.1-make_static.patch
Date: Sat, 04 Apr 2009 08:58:50
Message-Id: E1Lq1iC-0005uR-Mh@stork.gentoo.org
1 mabi 09/04/04 08:58:48
2
3 Modified: lua-5.1-make_static.patch
4 Log:
5 fixed missing $(LDFLAGS) that was added to make.patch but not make_static.patch
6 (Portage version: 2.1.6.11/cvs/Linux ppc)
7
8 Revision Changes Path
9 1.2 dev-lang/lua/files/lua-5.1-make_static.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/lua/files/lua-5.1-make_static.patch?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/lua/files/lua-5.1-make_static.patch?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/lua/files/lua-5.1-make_static.patch?r1=1.1&r2=1.2
14
15 Index: lua-5.1-make_static.patch
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-lang/lua/files/lua-5.1-make_static.patch,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- lua-5.1-make_static.patch 5 Apr 2007 10:17:20 -0000 1.1
22 +++ lua-5.1-make_static.patch 4 Apr 2009 08:58:48 -0000 1.2
23 @@ -5,8 +5,8 @@
24 -rpath $(RPATH) -o $(LIB_NAME) $(LIB_OBJS) $(LIB_LIBS)
25
26 $(LUA_T): $(LUA_O) $(LIB_NAME)
27 -- $(LIBTOOL) --mode=link $(CC) -Wl,-E -o $@ $(LUA_O) $(LUA_LIBS) -llua
28 -+ $(LIBTOOL) --mode=link $(CC) -static -Wl,-E -o $@ $(LUA_O) $(LIB_NAME) $(LUA_LIBS)
29 +- $(LIBTOOL) --mode=link $(CC) -Wl,-E $(LDFLAGS) -o $@ $(LUA_O) $(LUA_LIBS) -llua
30 ++ $(LIBTOOL) --mode=link $(CC) -static -Wl,-E $(LDFLAGS) -o $@ $(LUA_O) $(LIB_NAME) $(LUA_LIBS)
31
32 $(LUAC_T): $(LUAC_O) $(LIB_NAME)
33 $(LIBTOOL) --mode=link $(CC) -static -o $@ $(LUAC_O) $(LIB_NAME)