diff options
author | ru <ru@FreeBSD.org> | 2006-01-14 20:48:50 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2006-01-14 20:48:50 +0000 |
commit | 729a1ef9f4b0f89ac3f42fe019ae65f987d63958 (patch) | |
tree | 5f70f01a2b60faf672a0822bff80473d64d3308b /gnu | |
parent | af650f85339643365441d1197703ce184f6e20a0 (diff) | |
download | FreeBSD-src-729a1ef9f4b0f89ac3f42fe019ae65f987d63958.zip FreeBSD-src-729a1ef9f4b0f89ac3f42fe019ae65f987d63958.tar.gz |
Don't pollute output when "make" is run with -s.
Approved by: kan
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/cc/cc_int/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/usr.bin/cc/cc_int/Makefile b/gnu/usr.bin/cc/cc_int/Makefile index c455651..5c945c5 100644 --- a/gnu/usr.bin/cc/cc_int/Makefile +++ b/gnu/usr.bin/cc/cc_int/Makefile @@ -67,7 +67,8 @@ SRCS+= cpplib.c cpplex.c cppmacro.c cppexp.c cppfiles.c cpptrad.c \ SRCS+= insn-$F.c CLEANFILES+= insn-$F.c insn-$F.c: ${.OBJDIR}/../cc_tools/gen$F ${MD_FILE} - ${.OBJDIR}/../cc_tools/gen$F ${MD_FILE} > insn-$F.c + ${.OBJDIR}/../cc_tools/gen$F ${MD_FILE} > insn-$F.c \ + ${.MAKEFLAGS:M-s:S;-s;2>/dev/null;} .endfor .for F in modes SRCS+= insn-$F.c |