From 2f4bd550557cd6158ff47244e5b6239682a7a2de Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Tue, 27 Aug 2013 07:47:44 +1000 Subject: config: Fix the empty case of extra gcc options. --- source-builder/config/gcc-common-1.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source-builder/config/gcc-common-1.cfg b/source-builder/config/gcc-common-1.cfg index 4943fa3..cb2670c 100644 --- a/source-builder/config/gcc-common-1.cfg +++ b/source-builder/config/gcc-common-1.cfg @@ -164,8 +164,8 @@ BuildRoot: %{_tmppath}/%{name}-root-%(%{__id_u} -n) %{?with_threads:--enable-threads}%{!?with_threads:--disable-threads} \ %{?with_plugin:--enable-plugin}%{!?with_plugin:--disable-plugin} \ %{?enable_obsolete:--enable-obsolete} \ - --enable-languages="$languages" \ - %{?gcc_configure_extra_options:%{gcc_configure_extra_options}} + %{?gcc_configure_extra_options:%{gcc_configure_extra_options}} \ + --enable-languages="$languages" if test "%_host" != "%_build" ; then # Bug in gcc-3.2.1: -- cgit v1.2.3