Gentoo Archives: gentoo-commits

From: "Rafael Martins (rafaelmartins)" <rafaelmartins@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lua/luaexpat/files: luaexpat-1.1-makefile.patch
Date: Fri, 05 Nov 2010 20:51:44
Message-Id: 20101105205137.0CD4B20054@flycatcher.gentoo.org
1 rafaelmartins 10/11/05 20:51:36
2
3 Added: luaexpat-1.1-makefile.patch
4 Log:
5 Forgot to commit the files/ directory.
6
7 (Portage version: 2.2.0_alpha3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-lua/luaexpat/files/luaexpat-1.1-makefile.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaexpat/files/luaexpat-1.1-makefile.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaexpat/files/luaexpat-1.1-makefile.patch?rev=1.1&content-type=text/plain
14
15 Index: luaexpat-1.1-makefile.patch
16 ===================================================================
17 --- makefile.old 2006-06-08 20:41:48.000000000 +0000
18 +++ makefile 2009-10-26 14:19:08.000000000 +0000
19 @@ -18,11 +18,11 @@
20 $(CC) -c $(CFLAGS) -o $@ $(COMPAT_DIR)/compat-5.1.c
21
22 install:
23 - mkdir -p $(LUA_LIBDIR)
24 - cp src/$(LIBNAME) $(LUA_LIBDIR)
25 - cd $(LUA_LIBDIR); ln -f -s $(LIBNAME) $T.so
26 - mkdir -p $(LUA_DIR)/$T
27 - cp src/$T/lom.lua $(LUA_DIR)/$T
28 + mkdir -p $(DESTDIR)$(LUA_LIBDIR)
29 + cp src/$(LIBNAME) $(DESTDIR)$(LUA_LIBDIR)
30 + cd $(DESTDIR)$(LUA_LIBDIR); ln -f -s $(LIBNAME) $T.so
31 + mkdir -p $(DESTDIR)$(LUA_DIR)/$T
32 + cp src/$T/lom.lua $(DESTDIR)$(LUA_DIR)/$T
33
34 clean:
35 rm -f src/$(LIBNAME) $(OBJS)