From 1fa05eff317c564cbd31078d171f0592f34da44a Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Mon, 9 Sep 1996 01:10:09 +0000 Subject: [PATCH] tweaks --- ChangeLog | 2 ++ Makefile.am | 11 ++++++++++- Makefile.in | 8 +++++++- TODO | 4 ++++ lib/am/Makefile.am | 11 ++++++++++- 5 files changed, 33 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index e86c58ca..b181376f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,8 @@ Sun Sep 8 09:00:37 1996 Tom Tromey * Makefile.am (EXTRA_DIST): New macro. + (maintainer-clean): Don't run "make check". + (pathchk): New target. * automake.in (check_gnits_standards): Only check version number syntax at top level. diff --git a/Makefile.am b/Makefile.am index 63504177..8f2a1d6d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -65,7 +65,6 @@ maintainer-check: automake aclocal perl4.036 -c -w automake; \ perl4.036 -c -w aclocal; \ else :; fi - $(MAKE) check # Tag before making distribution. Also, don't make a distribution if # checks fail. Also, make sure the NEWS file is up-to-date. @@ -83,3 +82,13 @@ cvs-diff: prevver=Release-`echo $$prevno | sed 's/\./-/g'`; \ cvs -f rdiff -c -r $$prevver -r $$thisver $(PACKAGE) \ > $(PACKAGE)-$$prevno-$(VERSION).diff + +## Check our path lengths. +path-check: distdir + (cd $(distdir) && \ +## FIXME there's got to be a better way! pathchk should take the list +## of files on stdin, at least. + find . -print | xargs pathchk -p); \ + status=$$?; \ + rm -rf $(distdir); \ + exit $$status diff --git a/Makefile.in b/Makefile.in index 2117f7c7..8c840c64 100644 --- a/Makefile.in +++ b/Makefile.in @@ -450,7 +450,6 @@ maintainer-check: automake aclocal perl4.036 -c -w automake; \ perl4.036 -c -w aclocal; \ else :; fi - $(MAKE) check # Tag before making distribution. Also, don't make a distribution if # checks fail. Also, make sure the NEWS file is up-to-date. @@ -468,6 +467,13 @@ cvs-diff: prevver=Release-`echo $$prevno | sed 's/\./-/g'`; \ cvs -f rdiff -c -r $$prevver -r $$thisver $(PACKAGE) \ > $(PACKAGE)-$$prevno-$(VERSION).diff + +path-check: distdir + (cd $(distdir) && \ + find . -print | xargs pathchk -p); \ + status=$$?; \ + rm -rf $(distdir); \ + exit $$status .SUFFIXES: .SUFFIXES: .texi .texinfo .info .dvi diff --git a/TODO b/TODO index 2a6d4674..ae94a912 100644 --- a/TODO +++ b/TODO @@ -1,6 +1,10 @@ Priorities for release: [ none ] +* fix this distribution to be fully standards compliant + * pathchk says we run over the limit + * + * actually use acinstall program !! Must fix require_file stuff. It is really gross, and I don't diff --git a/lib/am/Makefile.am b/lib/am/Makefile.am index 63504177..8f2a1d6d 100644 --- a/lib/am/Makefile.am +++ b/lib/am/Makefile.am @@ -65,7 +65,6 @@ maintainer-check: automake aclocal perl4.036 -c -w automake; \ perl4.036 -c -w aclocal; \ else :; fi - $(MAKE) check # Tag before making distribution. Also, don't make a distribution if # checks fail. Also, make sure the NEWS file is up-to-date. @@ -83,3 +82,13 @@ cvs-diff: prevver=Release-`echo $$prevno | sed 's/\./-/g'`; \ cvs -f rdiff -c -r $$prevver -r $$thisver $(PACKAGE) \ > $(PACKAGE)-$$prevno-$(VERSION).diff + +## Check our path lengths. +path-check: distdir + (cd $(distdir) && \ +## FIXME there's got to be a better way! pathchk should take the list +## of files on stdin, at least. + find . -print | xargs pathchk -p); \ + status=$$?; \ + rm -rf $(distdir); \ + exit $$status -- 2.43.5