]> sourceware.org Git - automake.git/commitdiff
tweaks
authorTom Tromey <tromey@redhat.com>
Mon, 9 Sep 1996 01:10:09 +0000 (01:10 +0000)
committerTom Tromey <tromey@redhat.com>
Mon, 9 Sep 1996 01:10:09 +0000 (01:10 +0000)
ChangeLog
Makefile.am
Makefile.in
TODO
lib/am/Makefile.am

index e86c58ca3ed955afebe67d7cedc501d646636f5b..b181376f94c1dbb2e314794f4f897a28c7af27d9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
 Sun Sep  8 09:00:37 1996  Tom Tromey  <tromey@creche.cygnus.com>
 
        * 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.
index 63504177b8c42cd19f0f08be14cb40b159607460..8f2a1d6d9397a4b9431effed28d362ed3b9e7cae 100644 (file)
@@ -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
index 2117f7c78af39d09c7ccadb58c70d68b10034f1c..8c840c6499ea0f8f56eb02429cfa4fc2d9b040a4 100644 (file)
@@ -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 2a6d46744375289b0af9a4f0c3091199d2a29a17..ae94a91293af4ac677476a27453653f272871802 100644 (file)
--- 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
index 63504177b8c42cd19f0f08be14cb40b159607460..8f2a1d6d9397a4b9431effed28d362ed3b9e7cae 100644 (file)
@@ -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
This page took 0.040207 seconds and 5 git commands to generate.