From c633cc1a92328cc64daa0f5cc996fae423703e0a Mon Sep 17 00:00:00 2001 From: Juergen Buchmueller Date: Fri, 2 Sep 2016 17:29:52 +0200 Subject: [PATCH] boswars: add a blank between $CFLAGS and -Wall ... --- srcpkgs/boswars/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/boswars/template b/srcpkgs/boswars/template index 67b2bfad8c..598d5e8b84 100644 --- a/srcpkgs/boswars/template +++ b/srcpkgs/boswars/template @@ -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