1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Send useless output in flymake-tests to /dev/null (bug#70716)

* test/lisp/progmodes/flymake-resources/Makefile (check-syntax):
Avoid producing a useless file named `-.o` in the source tree.
This commit is contained in:
Mattias Engdegård 2024-08-28 19:24:55 +02:00
parent bfaa3e029f
commit 1ae861ad7e

View file

@ -8,6 +8,6 @@ CC_OPTS = -Wall -Wextra
## normally use flymake, so it seems like just avoiding the issue
## in this test is fine. Set flymake-log-level to 3 to investigate.
check-syntax:
GCC_COLORS= gcc $(CC_OPTS) ${CHK_SOURCES} || true
GCC_COLORS= gcc $(CC_OPTS) -o /dev/null -S ${CHK_SOURCES} || true
# eof