From 834c50e10800a23efdfa537ed91dbaa548f8985d Mon Sep 17 00:00:00 2001
From: Ulrich Sibiller <uli42@gmx.de>
Date: Sat, 11 May 2024 17:22:28 +0200
Subject: 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)
---
 nx-X11/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'nx-X11/Makefile')

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:
-- 
cgit v1.2.3