21 lines
910 B
Diff
21 lines
910 B
Diff
|
# Fix leftover warning flags on mysql_config --cflags
|
||
|
|
||
|
--- scripts/mysql_config.sh 2014-10-08 07:35:00 +0000
|
||
|
+++ scripts/mysql_config.sh 2014-11-18 14:43:01 +0000
|
||
|
@@ -136,12 +136,12 @@
|
||
|
for remove in DDBUG_OFF DSAFE_MUTEX DUNIV_MUST_NOT_INLINE DFORCE_INIT_OF_VARS \
|
||
|
DEXTRA_DEBUG DHAVE_valgrind O 'O[0-9]' 'xO[0-9]' 'W[-A-Za-z]*' \
|
||
|
'mtune=[-A-Za-z0-9]*' 'mcpu=[-A-Za-z0-9]*' 'march=[-A-Za-z0-9]*' \
|
||
|
- Xa xstrconst "xc99=none" AC99 \
|
||
|
+ Xa xstrconst "xc99=none" AC99 'W[-A-Za-z]*=[-A-Za-z0-9]*' \
|
||
|
unroll2 ip mp restrict
|
||
|
do
|
||
|
# The first option we might strip will always have a space before it because
|
||
|
# we set -I$pkgincludedir as the first option
|
||
|
- cflags=`echo "$cflags"|sed -e "s/ -$remove */ /g"`
|
||
|
+ cflags=`echo "$cflags"|sed -e ':again' -e "s/ -$remove */ /g" -e 't again'`
|
||
|
done
|
||
|
cflags=`echo "$cflags"|sed -e 's/ *\$//'`
|
||
|
|
||
|
|