From 2cdd315a08dbb57a637b67822480f476ea53c1ce Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Fri, 17 Aug 2012 15:58:45 -0400 Subject: [PATCH] Don't echo the awk command when building siglist.in --- compat/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.40.0