boswars: add a blank between $CFLAGS and -Wall ...

This commit is contained in:
Juergen Buchmueller 2016-09-02 17:29:52 +02:00
parent 056124536e
commit c633cc1a92
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ nocross=yes
do_build() {
# Patch make.py to respect our $CXXFLAGS and $LDFLAGS
sed -i make.py \
-e "s;^gccflags = '\(.*\)'.split();gccflags = '${CXXFLAGS}\1'.split();" \
-e "s;^gccflags = '\(.*\)'.split();gccflags = '${CXXFLAGS} \1'.split();" \
-e "/^gccflags.*/a gldflags = '${LDFLAGS}'.split()" \
-e "s;self.ldflags = list(ldflags);self.ldflags = gldflags + list(ldflags);"
python make.py