From: Michael Meissner Date: Tue, 31 Oct 1995 20:59:19 +0000 (+0000) Subject: map , to spaces in --enable-sim-cflags X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5d0e859038215f5077e45ee866ed4c2d50250e9b;p=binutils-gdb.git map , to spaces in --enable-sim-cflags --- diff --git a/sim/ppc/configure.in b/sim/ppc/configure.in index 26766f2d0d6..f0758d33fb5 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