Gentoo Archives: gentoo-commits

From: "Hanno Böck" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-simulation/micropolis/
Date: Sat, 09 May 2020 10:41:09
Message-Id: 1589020855.41a1662f1d1172473926de973f8509e1c17cbfeb.hanno@gentoo
1 commit: 41a1662f1d1172473926de973f8509e1c17cbfeb
2 Author: Hanno Böck <hanno <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 9 10:40:55 2020 +0000
4 Commit: Hanno Böck <hanno <AT> gentoo <DOT> org>
5 CommitDate: Sat May 9 10:40:55 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41a1662f
7
8 games-simulation/micropolis: Use safer sed delimiter
9
10 Closes: https://bugs.gentoo.org/710964
11 Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
12 Package-Manager: Portage-2.3.99, Repoman-2.3.22
13
14 games-simulation/micropolis/micropolis-1.0_p20180313.ebuild | 6 +++---
15 1 file changed, 3 insertions(+), 3 deletions(-)
16
17 diff --git a/games-simulation/micropolis/micropolis-1.0_p20180313.ebuild b/games-simulation/micropolis/micropolis-1.0_p20180313.ebuild
18 index c1c8bfccece..9b54f5d5058 100644
19 --- a/games-simulation/micropolis/micropolis-1.0_p20180313.ebuild
20 +++ b/games-simulation/micropolis/micropolis-1.0_p20180313.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 +# Copyright 1999-2020 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27 @@ -27,9 +27,9 @@ S="${WORKDIR}/${PN}-${COMMIT}"
28 src_prepare() {
29 default
30
31 - sed -i -e "s:-O3:${CFLAGS}:" \
32 + sed -i -e "s|-O3|${CFLAGS}|" \
33 src/tclx/config.mk src/{sim,tcl,tk}/makefile || die
34 - sed -i -e "s:XLDFLAGS=:&${LDFLAGS}:" \
35 + sed -i -e "s|XLDFLAGS=|&${LDFLAGS}|" \
36 src/tclx/config.mk || die
37 }