Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/elfkickers/files: create-destdir-path.patch
Date: Tue, 31 May 2011 22:16:47
Message-Id: 20110531221629.6EF6620054@flycatcher.gentoo.org
1 blueness 11/05/31 22:16:29
2
3 Added: create-destdir-path.patch
4 Log:
5 Added missing patch file
6
7 (Portage version: 2.1.9.42/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-util/elfkickers/files/create-destdir-path.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/elfkickers/files/create-destdir-path.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/elfkickers/files/create-destdir-path.patch?rev=1.1&content-type=text/plain
14
15 Index: create-destdir-path.patch
16 ===================================================================
17 --- Makefile.orig 2011-05-30 16:37:41.000000000 -0400
18 +++ Makefile 2011-05-30 16:38:30.000000000 -0400
19 @@ -22,8 +22,9 @@
20 infect: bin/infect doc/infect.1
21
22 install: $(PROGRAMS:%=bin/%)
23 - cp bin/* $(prefix)/bin/.
24 - cp doc/* $(prefix)/share/man/man1/.
25 + install -d $(prefix)/usr/bin $(prefix)/usr/share/man/man1
26 + install bin/* $(prefix)/usr/bin
27 + install -m 644 doc/* $(prefix)/usr/share/man/man1
28
29 clean:
30 for dir in elfrw $(PROGRAMS) ; do $(MAKE) -C$$dir clean ; done