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.patch
Date: Sat, 21 Mar 2009 12:42:04
Message-Id: E1Ll0WY-0008Ol-EQ@stork.gentoo.org
1 mabi 09/03/21 12:42:02
2
3 Modified: lua-5.1-make.patch
4 Log:
5 fixed bug #253594, removed useless variable
6 (Portage version: 2.1.6.9/cvs/Linux ppc)
7
8 Revision Changes Path
9 1.4 dev-lang/lua/files/lua-5.1-make.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/lua/files/lua-5.1-make.patch?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/lua/files/lua-5.1-make.patch?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/lua/files/lua-5.1-make.patch?r1=1.3&r2=1.4
14
15 Index: lua-5.1-make.patch
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-lang/lua/files/lua-5.1-make.patch,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- lua-5.1-make.patch 17 Feb 2008 18:04:35 -0000 1.3
22 +++ lua-5.1-make.patch 21 Mar 2009 12:42:02 -0000 1.4
23 @@ -44,19 +44,19 @@
24 +
25 +$(LIB_NAME): $(LIB_OBJS)
26 + $(LIBTOOL) --mode=link $(CC) -version-info $(LIB_VERSION) \
27 -+ -rpath $(RPATH) -o $(LIB_NAME) $(LIB_OBJS) $(LIB_LIBS)
28 ++ -rpath $(RPATH) $(LDFLAGS) -o $(LIB_NAME) $(LIB_OBJS) $(LIB_LIBS)
29 +
30 +$(LIB_NAME:.la=.a): $(LIB_OBJS)
31 -+ $(LIBTOOL) --mode=link $(CC) -static -o $(LIB_NAME:.la=.a) $(LIB_OBJS)
32 ++ $(LIBTOOL) --mode=link $(CC) -static $(LDFLAGS) -o $(LIB_NAME:.la=.a) $(LIB_OBJS)
33 +
34 +$(LUA_T): $(LUA_O) $(LIB_NAME)
35 -+ $(LIBTOOL) --mode=link $(CC) -Wl,-E -o $@ $(LUA_O) $(LUA_LIBS) -llua
36 ++ $(LIBTOOL) --mode=link $(CC) -Wl,-E $(LDFLAGS) -o $@ $(LUA_O) $(LUA_LIBS) -llua
37 +
38 +lua_test: $(LUA_O) $(LIB_NAME)
39 -+ $(LIBTOOL) --mode=link $(CC) -static -Wl,-E -o $@ $(LUA_O) $(LIB_NAME) $(LUA_LIBS)
40 ++ $(LIBTOOL) --mode=link $(CC) -static -Wl,-E $(LDFLAGS) -o $@ $(LUA_O) $(LIB_NAME) $(LUA_LIBS)
41 +
42 +$(LUAC_T): $(LUAC_O) $(LIB_NAME)
43 -+ $(LIBTOOL) --mode=link $(CC) -static -o $@ $(LUAC_O) $(LIB_NAME)
44 ++ $(LIBTOOL) --mode=link $(CC) -static $(LDFLAGS) -o $@ $(LUAC_O) $(LIB_NAME)
45 +
46 +gentoo_clean:
47 + $(LIBTOOL) --mode=clean $(RM) $(ALL_O:.o=.lo) $(LIB_NAME) lua luac