diff options
| author | Karol Kosek <krkk@krkk.ct8.pl> | 2021-02-21 20:30:00 +0000 |
|---|---|---|
| committer | Felix Queißner <felix@ib-queissner.de> | 2021-02-23 12:30:42 +0100 |
| commit | 291bfd02b4cda9c4d3fd25da01bbc539b9308a61 (patch) | |
| tree | 4822c6ca342dca99d84226346859164ee4e31017 | |
| parent | 731dead13fbb19a5b283d981e0661f505289bb7e (diff) | |
| download | kristall-291bfd02b4cda9c4d3fd25da01bbc539b9308a61.tar.gz | |
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.
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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/ |
