From: Jim Meyering Date: Mon, 28 Jan 2002 13:50:50 +0000 (+0000) Subject: (ac-check): Remove, now that we no longer have X-Git-Tag: TEXTUTILS-2_0_21~133 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2c1c1dc64e584f5ba5cb7a1033e6f32535881211;p=thirdparty%2Fcoreutils.git (ac-check): Remove, now that we no longer have to duplicate that information. --- diff --git a/Makefile.maint b/Makefile.maint index 4a42dd848e..864a50e956 100644 --- a/Makefile.maint +++ b/Makefile.maint @@ -54,7 +54,7 @@ release_archive_dir ?= ../release # Run `changelog-check' last, as previous test may reveal problems requiring # new ChangeLog entries. local-check = \ - ac-check po-check copyright-check writable-files m4-check author_mark_check \ + po-check copyright-check writable-files m4-check author_mark_check \ changelog-check strftime-check header-check .PHONY: $(local-check) @@ -94,23 +94,6 @@ m4-check: && { echo 'Makefile.maint: quote the first arg to AC_DEFUN' 1>&2; \ exit 1; } || : -# If the 3-arg form of AC_INIT is used, then verify that the package name -# and version number specified there match $(PACKAGE) and $(VERSION). -# e.g., AC_INIT(GNU fileutils, 4.1.6, bug-fileutils@gnu.org) - -ac_p_pkg = /^AC_INIT\((GNU )?(\S+),/ and print "$$2\n" -AC_INIT_PKG := $(shell perl -ne '$(ac_p_pkg)' configure.ac) -ac_p_ver = /^AC_INIT\(.*?, *(\S+),/ and print "$$1\n" -AC_INIT_VER := $(shell perl -ne '$(ac_p_ver)' configure.ac) - -ac-check: - if test "$(AC_INIT_PKG)"; then \ - test "$(AC_INIT_PKG)" = $(PACKAGE) || exit 1; \ - fi - if test "$(AC_INIT_VER)"; then \ - test "$(AC_INIT_VER)" = $(VERSION) || exit 1; \ - fi - # Verify that all source files using _() are listed in po/POTFILES.in. po-check: if test -f po/POTFILES.in; then \