Skip to content

Commit

Permalink
Revert "nx-X11/Makefile: pass down $(MFLAGS) to imake call, because..…
Browse files Browse the repository at this point in the history
…. 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)
  • Loading branch information
uli42 committed May 19, 2024
1 parent 18e78c2 commit 834c50e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nx-X11/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 834c50e

Please sign in to comment.