From b50bf4d08e908516f438259abeaa9b01be2a42d5 Mon Sep 17 00:00:00 2001 From: Jochen Sprickerhof Date: Fri, 26 Jul 2019 10:49:11 +0200 Subject: [PATCH] Don't pass MAKEFLAGS to $(MAKE) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit make will pass them automatically. Also they are not meant to be consumed by make as they are stripped: Thus, if you do ‘make -ks’ then MAKEFLAGS gets the value ‘ks’. https://www.gnu.org/software/make/manual/html_node/Options_002fRecursion.html Gbp-Pq: Name 0009-Don-t-pass-MAKEFLAGS-to-MAKE.patch --- Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.in b/Makefile.in index f6c341f..f376e46 100644 --- a/Makefile.in +++ b/Makefile.in @@ -382,17 +382,17 @@ rpm: changes.html tools/mkrpm $(WEB) $(VERSD) $(RELEASE) gui: gpsbabel$(EXEEXT) - cd gui ; $(QMAKE) app.pro && $(MAKE) $(MAKEFLAGS) + cd gui ; $(QMAKE) app.pro && $(MAKE) linux-gui: gui - cd gui; $(MAKE) $(MAKEFLAGS) package + cd gui; $(MAKE) package # Build the Qt front end, place GPSBabel in the right place, deploy all # the libs. mac-gui: gui rm -f gui/GPSBabelFE.dmg - cd gui; $(MAKE) $(MAKEFLAGS) package + cd gui; $(MAKE) package mv gui/GPSBabelFE.dmg gui/GPSBabel-$(VERSIOND).dmg # release check using CVS tree -- 2.30.2