From 291bfd02b4cda9c4d3fd25da01bbc539b9308a61 Mon Sep 17 00:00:00 2001 From: Karol Kosek Date: Sun, 21 Feb 2021 20:30:00 +0000 Subject: Makefile: remove MAKEFLAGS parameter from sub-make calls This broke running make with flags like -k or -s set, because make apparently removes hyphens from those flags, making it to think that we want to run a not existing target. Also, flags are stored in env, so child processes know which flags are in use and we don't have to provide them again. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 48e85ea..95f06da 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ kristall: build/kristall .PHONY: build/kristall build/kristall: src/* mkdir -p build - cd build; $(HOMEBREW_PATH) $(QMAKE_COMMAND) CONFIG+=$(QMAKE_CONFIG) ../src/kristall.pro && $(MAKE) $(MAKEFLAGS) + cd build; $(HOMEBREW_PATH) $(QMAKE_COMMAND) CONFIG+=$(QMAKE_CONFIG) ../src/kristall.pro && $(MAKE) install: kristall # Prepare directories $(MAKEDIR) $(sharedir)/icons/hicolor/scalable/apps/ -- cgit v1.2.3