From: Todd C. Miller Date: Fri, 17 Aug 2012 19:58:45 +0000 (-0400) Subject: Don't echo the awk command when building siglist.in X-Git-Tag: SUDO_1_8_6^2~29 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2cdd315a08dbb57a637b67822480f476ea53c1ce;p=sudo Don't echo the awk command when building siglist.in --- diff --git a/compat/Makefile.in b/compat/Makefile.in index 880f3f64d..797347c04 100644 --- a/compat/Makefile.in +++ b/compat/Makefile.in @@ -95,7 +95,7 @@ globtest: globtest.o libreplace.la $(LIBTOOL) --mode=link $(CC) -o $@ globtest.o libreplace.la $(srcdir)/mksiglist.h: $(srcdir)/siglist.in - if [ -n "$(DEVEL)" ]; then \ + @if [ -n "$(DEVEL)" ]; then \ awk 'BEGIN {print "/* public domain */\n"} /^ [A-Z]/ {printf("#ifdef SIG%s\n if (my_sys_siglist[SIG%s] == NULL)\n\tmy_sys_siglist[SIG%s] = \"%s\";\n#endif\n", $$1, $$1, $$1, substr($$0, 13))}' < $(srcdir)/siglist.in > $@; \ fi