]> granicus.if.org Git - sudo/commitdiff
Don't echo the awk command when building siglist.in
authorTodd C. Miller <Todd.Miller@courtesan.com>
Fri, 17 Aug 2012 19:58:45 +0000 (15:58 -0400)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Fri, 17 Aug 2012 19:58:45 +0000 (15:58 -0400)
compat/Makefile.in

index 880f3f64d4ee4b37319445bfe73c127d9013c21f..797347c042be4151b9be657705e3fee68842efe3 100644 (file)
@@ -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