From 5d0e859038215f5077e45ee866ed4c2d50250e9b Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Tue, 31 Oct 1995 20:59:19 +0000 Subject: [PATCH] map , to spaces in --enable-sim-cflags --- sim/ppc/configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sim/ppc/configure.in b/sim/ppc/configure.in index 26766f2..f0758d3 100644 --- a/sim/ppc/configure.in +++ b/sim/ppc/configure.in @@ -66,11 +66,11 @@ fi if test x"$enable_sim_cflags" != x"" -a x"$enable_sim_cflags" != x"no"; then if test "$enable_sim_cflags" = "yes"; then - enable_sim_cflags="-fomit-frame-pointer -O2" + enable_sim_cflags="-fomit-frame-pointer,-O2" fi mv Makefile Makefile.tem echo "Setting SIM_CFLAGS=$enable_sim_cflags" - sed -e "s/^SIM_CFLAGS.*=.*\$/SIM_CFLAGS = $enable_sim_cflags/" \ + sed -e "s/^SIM_CFLAGS.*=.*\$/SIM_CFLAGS = $enable_sim_cflags/" -e "s/,/ /g"\ < Makefile.tem > Makefile rm -f Makefile.tem fi -- 2.7.4