From: michuz Date: Sat, 23 Dec 2000 00:48:44 +0000 (+0000) Subject: - changed %%{!?debug:...}%%{?debug...} to %%{?debug:...}%%{!?debug...} X-Git-Tag: crossmingw32-gcc-2_95_3-3~2 X-Git-Url: http://git.pld-linux.org/?a=commitdiff_plain;h=51bcb7e208ebef0bdf0438b1789016d88025cb82;p=packages%2Fgcc.git - changed %%{!?debug:...}%%{?debug...} to %%{?debug:...}%%{!?debug...} (now it's more C like) Changed files: gcc.spec -> 1.71 --- diff --git a/gcc.spec b/gcc.spec index 64b0db1..d64d4f1 100644 --- a/gcc.spec +++ b/gcc.spec @@ -357,8 +357,8 @@ Preprocesor C umo rm -rf obj-%{_target_platform} install -d obj-%{_target_platform} && cd obj-%{_target_platform} -CFLAGS="%{!?debug:$RPM_OPT_FLAGS}%{?debug:-O -g}" \ -CXXFLAGS="%{!?debug:$RPM_OPT_FLAGS}%{?debug:-O -g}" \ +CFLAGS="%{?debug:-O -g}%{!?debug:$RPM_OPT_FLAGS}" \ +CXXFLAGS="%{?debug:-O -g}%{!?debug:$RPM_OPT_FLAGS}" \ TEXCONFIG=false ../configure \ --prefix=%{_prefix} \ --infodir=%{_infodir} \