diff options
author | François-Xavier Carton <fx.carton91@gmail.com> | 2022-05-31 03:16:28 +0200 |
---|---|---|
committer | François-Xavier Carton <fx.carton91@gmail.com> | 2022-05-31 03:16:28 +0200 |
commit | 13b13d22809a890a172790271c6f13449911453a (patch) | |
tree | a2b98cf70aafed5a7c96b6a83158a0d5f55e919a /sci-mathematics | |
parent | games-arcade/taisei: Add new dep for live ebuild. (diff) | |
download | guru-13b13d22809a890a172790271c6f13449911453a.tar.gz guru-13b13d22809a890a172790271c6f13449911453a.tar.bz2 guru-13b13d22809a890a172790271c6f13449911453a.zip |
sci-mathematics/frama-c: fix CFLAGS replacement
Closes: https://bugs.gentoo.org/847424
Signed-off-by: François-Xavier Carton <fx.carton91@gmail.com>
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/frama-c/frama-c-24.0.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sci-mathematics/frama-c/frama-c-24.0.ebuild b/sci-mathematics/frama-c/frama-c-24.0.ebuild index 6d8212f5a..7427c5594 100644 --- a/sci-mathematics/frama-c/frama-c-24.0.ebuild +++ b/sci-mathematics/frama-c/frama-c-24.0.ebuild @@ -33,7 +33,7 @@ src_prepare() { mv configure.in configure.ac || die sed -i 's/configure\.in/configure.ac/g' Makefile.generating Makefile || die touch config_file || die - sed -i '/^\t\$(CC)/s/ -O3 /$(CFLAGS)/' Makefile || die + sed -i '/^\t\$(CC)/s/ -O3 / $(CFLAGS) /' Makefile || die eautoreconf default } |