Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/emacs:master commit in: app-editors/mg/
Date: Fri, 04 Oct 2013 17:22:12
Message-Id: 1380907326.d474ea318cae1a39488e61e8324f2db6223f2a15.ulm@gentoo
1 commit: d474ea318cae1a39488e61e8324f2db6223f2a15
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 4 17:22:06 2013 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 4 17:22:06 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs.git;a=commit;h=d474ea31
7
8 Small format changes in Makefile.
9
10 Package-Manager: portage-2.2.7
11
12 ---
13 app-editors/mg/mg-20130922.ebuild | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/app-editors/mg/mg-20130922.ebuild b/app-editors/mg/mg-20130922.ebuild
17 index 801b5fe..27ae464 100644
18 --- a/app-editors/mg/mg-20130922.ebuild
19 +++ b/app-editors/mg/mg-20130922.ebuild
20 @@ -22,8 +22,8 @@ DEPEND="${RDEPEND}
21
22 src_prepare() {
23 # create our own Makefile to avoid BSD make
24 - echo -e 'SRCS =' *.c '\nmg: $(SRCS:.c=.o)' \
25 - '\n\t$(CC) $(LDFLAGS) $^ -o $@ $(LDLIBS)' >Makefile || die
26 + echo -e 'SRCS =' *.c '\n\nmg: $(SRCS:.c=.o)' \
27 + '\n\t$(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)' >Makefile || die
28
29 # remove OpenBSD specific easter egg
30 sed -i -e 's/theo\.c//' Makefile || die