Skip to content

Commit 834c50e

Browse files
committed
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 ArcticaProject#1058 (comment) As -s in imake defines and output file instead of the silencing the output it is called wrong. This reverts commit 72f11ee. Adresses ArcticaProject#1058 (part 2)
1 parent 18e78c2 commit 834c50e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nx-X11/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ xmakefile:
7070
else \
7171
exit 0; \
7272
fi
73-
which $(IMAKE) 1>/dev/null && $(IMAKE_CMD) $(MFLAGS) -s xmakefile -DTOPDIR=$(TOP) -DCURDIR=$(CURRENT_DIR)
73+
which $(IMAKE) 1>/dev/null && $(IMAKE_CMD) -s xmakefile -DTOPDIR=$(TOP) -DCURDIR=$(CURRENT_DIR)
7474

7575
# don't allow any default rules in this Makefile
7676
.SUFFIXES:

0 commit comments

Comments
 (0)