Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/bmpanel/files: Makefile.patch
Date: Sun, 29 Aug 2010 08:20:21
Message-Id: 20100829082017.8FB2D20054@flycatcher.gentoo.org
1 hwoarang 10/08/29 08:20:17
2
3 Added: Makefile.patch
4 Log:
5 Moved from sunrise overlay. Bug #242830. Thanks to Christian Ruppert (idl0r) for the ebuild
6
7 (Portage version: 2.2_rc71/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 x11-misc/bmpanel/files/Makefile.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/bmpanel/files/Makefile.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/bmpanel/files/Makefile.patch?rev=1.1&content-type=text/plain
14
15 Index: Makefile.patch
16 ===================================================================
17 --- src/Makefile.old 2009-02-15 16:12:16.750885874 +0100
18 +++ src/Makefile 2009-02-15 16:16:24.560106442 +0100
19 @@ -12,10 +12,7 @@ ifneq ($(UGLY),1)
20 endif
21
22 $(APP): $(OBJS)
23 - $(V_L)$(LD) $(LIBS) -o $@ $(OBJS)
24 -ifeq ($(DEBUG),0)
25 - $(V_S)strip -s $(APP)
26 -endif
27 + $(V_L)$(LD) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
28
29 $(BUILDDIR)/src/%.o: src/%.c .mk/config.mk
30 $(V_C)$(CC) -c -MMD $(CFLAGS) $< -o $@