diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2024-05-11 17:22:28 +0200 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2024-05-20 01:27:00 +0200 |
commit | 834c50e10800a23efdfa537ed91dbaa548f8985d (patch) | |
tree | ab6094740c941cc27742dd18f3daf00bdb398167 | |
parent | 18e78c2be7f7a650aadc644472e4a774b99278c9 (diff) | |
download | nx-libs-834c50e10800a23efdfa537ed91dbaa548f8985d.tar.gz nx-libs-834c50e10800a23efdfa537ed91dbaa548f8985d.tar.bz2 nx-libs-834c50e10800a23efdfa537ed91dbaa548f8985d.zip |
Revert "nx-X11/Makefile: pass down $(MFLAGS) to imake call, because... we probably want that. Likely."
This commit breaks compilation because if compiled without VERBOSE we
end up in imake -s -s xmakefile being called. See
https://github.com/ArcticaProject/nx-libs/issues/1058#issuecomment-1564570705
As -s in imake defines and output file instead of the silencing the
output it is called wrong.
This reverts commit 72f11ee838e67757e235e7216fb82679cc3f7d67.
Adresses ArcticaProject/nx-libs#1058 (part 2)
-rw-r--r-- | nx-X11/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nx-X11/Makefile b/nx-X11/Makefile index 4249a710f..364a3ac9f 100644 --- a/nx-X11/Makefile +++ b/nx-X11/Makefile @@ -70,7 +70,7 @@ xmakefile: else \ exit 0; \ fi - which $(IMAKE) 1>/dev/null && $(IMAKE_CMD) $(MFLAGS) -s xmakefile -DTOPDIR=$(TOP) -DCURDIR=$(CURRENT_DIR) + which $(IMAKE) 1>/dev/null && $(IMAKE_CMD) -s xmakefile -DTOPDIR=$(TOP) -DCURDIR=$(CURRENT_DIR) # don't allow any default rules in this Makefile .SUFFIXES: |