Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/cachefilesd/files: 0.10.4-makefile.patch
Date: Thu, 01 Dec 2011 13:04:33
Message-Id: 20111201130421.A090F2004B@flycatcher.gentoo.org
1 jlec 11/12/01 13:04:21
2
3 Added: 0.10.4-makefile.patch
4 Log:
5 Version Bump
6
7 (Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 sys-fs/cachefilesd/files/0.10.4-makefile.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/cachefilesd/files/0.10.4-makefile.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/cachefilesd/files/0.10.4-makefile.patch?rev=1.1&content-type=text/plain
14
15 Index: 0.10.4-makefile.patch
16 ===================================================================
17 Makefile | 6 ++++--
18 1 files changed, 4 insertions(+), 2 deletions(-)
19
20 diff --git a/Makefile b/Makefile
21 index d5d352e..9a98bf5 100644
22 --- a/Makefile
23 +++ b/Makefile
24 @@ -1,4 +1,3 @@
25 -CFLAGS := -g -O2 -Wall
26 INSTALL := install
27 DESTDIR :=
28 ETCDIR := /etc
29 @@ -38,7 +37,10 @@ endif
30 ###############################################################################
31 all: cachefilesd
32
33 -cachefilesd: cachefilesd.c Makefile
34 +cachefilesd.o: cachefilesd.c
35 + $(CC) $(CFLAGS) -c $<
36 +
37 +cachefilesd: cachefilesd.o
38 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
39
40 ###############################################################################