From 896b672499d6a31a6caf85411bcbdde6edc57668 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 3 Jun 2008 08:34:09 +0200 Subject: use gnulib's progname module * bootstrap.conf (gnulib_modules): Add progname. * src/*.c (program_name): Remove declaration. * (main): Call set_program_name rather than setting program_name. * src/nice.c (main): Cast program_name to "(char *)". * src/prog-fprintf.c: Include "system.h" * src/system.h: Include "progname.h". * maint.mk (sc_program_name): Adjust rule. Suggestion from Eric Blake. --- maint.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'maint.mk') diff --git a/maint.mk b/maint.mk index 25551a84a..f4b0bae32 100644 --- a/maint.mk +++ b/maint.mk @@ -342,13 +342,13 @@ sc_system_h_headers: .re-list fi # Ensure that each .c file containing a "main" function also -# declares "char *program_name", with or without "const". +# calls set_program_name. sc_program_name: @if $(VC_LIST_EXCEPT) | grep '\.c$$' > /dev/null; then \ files=$$(grep -l '^main *(' $$($(VC_LIST_EXCEPT) | grep '\.c$$')); \ - grep -EL '^(char const|(const )?char) \*program_name;' $$files \ + grep -LE 'set_program_name *\(m?argv\[0\]\);' $$files \ | grep . && \ - { echo '$(ME): the above files do not declare program_name' \ + { echo '$(ME): the above files do not call set_program_name' \ 1>&2; exit 1; } || :; \ else :; \ fi -- cgit v1.2.3-54-g00ecf