change = to space for user options defines with = value

This commit is contained in:
toddouska 2013-05-29 15:03:27 -07:00
parent b2ef938cbe
commit baa012b1d9
1 changed files with 3 additions and 2 deletions

View File

@ -1351,8 +1351,9 @@ for option in $OPTION_FLAGS; do
defonly=`echo $option | sed 's/-D//'`
if test "$defonly" != "$option"
then
echo "#undef $defonly" >> $OPTION_FILE
echo "#define $defonly" >> $OPTION_FILE
noequalsign=`echo $defonly | sed 's/=/ /'`
echo "#undef $noequalsign" >> $OPTION_FILE
echo "#define $noequalsign" >> $OPTION_FILE
echo "" >> $OPTION_FILE
else
echo "option w/o begin -D is $option, not saving to $OPTION_FILE"