do not filter -O? from RPM_OPT_FLAGS:

jakub discovered that LO libraries are built without optimization,
which is because in CWS gnumake4, and thus LO 3.5, the variables
CFLAGS/CXXFLAGS override the optimization and debug settings used by
gbuild, and these are exported by the spec file.
This commit is contained in:
Michael Stahl 2012-04-04 18:45:35 +02:00
parent d5dc24284d
commit e1a7c500bb

View File

@ -1026,7 +1026,7 @@ export PATH=$QT4DIR/bin:$PATH
#use the RPM_OPT_FLAGS but remove the OOo overridden ones
for i in $RPM_OPT_FLAGS; do
case "$i" in
-O?|-pipe|-Wall|-g|-fexceptions) continue;;
-pipe|-Wall|-g|-fexceptions) continue;;
esac
ARCH_FLAGS="$ARCH_FLAGS $i"
done