Last minute 3.75.91 changes. 3.75.91
authorPaul Smith <psmith@gnu.org>
Mon, 18 Aug 1997 20:14:30 +0000 (20:14 +0000)
committerPaul Smith <psmith@gnu.org>
Mon, 18 Aug 1997 20:14:30 +0000 (20:14 +0000)
AUTHORS
Makefile.am
NEWS

diff --git a/AUTHORS b/AUTHORS
index b316c4b..225eb24 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,12 +1,16 @@
 -----------------------------------
 
-GNU make and the GNU Make User's Manual were created by:
+GNU make development up to version 3.75 by:
     Roland McGrath <roland@gnu.ai.mit.edu>
-    Richard M. Stallman <rms@gnu.ai.mit.edu>
 
 
-Development and maintenance up to GNU make 3.75 by:
+GNU Make User's Manual written by:
+    Richard M. Stallman <rms@gnu.ai.mit.edu>
+
+  User's Manual edited by:
     Roland McGrath <roland@gnu.ai.mit.edu>
+    Bob Chassell <bob@gnu.ai.mit.edu>
+    Melissa Weisshaus <melissa@gnu.ai.mit.edu>
 
 
 Development and maintenance starting with GNU make 3.76 by:
@@ -17,7 +21,7 @@ Development and maintenance starting with GNU make 3.76 by:
 GNU Make porting efforts:
 
   Port to VMS by:
-      Klaus Kaempf (kkaempf@progis.de)
+      Klaus Kaempf <kkaempf@progis.de>
 
 
   Port to Amiga by:
index 6960f08..17e2acd 100644 (file)
@@ -29,24 +29,23 @@ EXTRA_DIST =        make.man $(BUILT_SOURCES) remote-cstms.c \
 SUBDIRS =      glob
 
 # Look for the make test suite, and run it if found.  Look in MAKE_TEST, or
-# in the srcdir and its parent and the distdir and its parent.
+# in the srcdir or the distdir, their parents, and their parents.
 #
 check-local:
-       @here=`pwd`; test=""; \
+       @here=`pwd`; testdir=""; \
          case "$(MAKE_TEST)" in "") \
            for d1 in $$here $(srcdir); do \
-             for d2 in .. .; do \
+             for d2 in ../.. .. .; do \
                try=`ls -1 $$d1/$$d2/make-test-*/run_make_tests 2>/dev/null | tail -1`; \
-               case "$$try" in "") : ;; *) test="$$try" ;; esac; \
+               case "$$try" in "") : ;; *) testdir=`dirname $$try` ;; esac; \
             done; done ;; \
-           *) test="$(MAKE_TEST)" ;; \
+           *) testdir="$(MAKE_TEST)" ;; \
          esac; \
-         case "$$test" in \
-           "") echo "Couldn't find make-test-* test suite."; exit 1;; \
+         case "$$testdir" in \
+           "") echo "Couldn't find make-test-* test suite."; exit 0;; \
          esac; \
-         testdir=`dirname $$test`; \
          echo "cd $$testdir && ./run_make_tests -make_path $$here/make"; \
-         cd $$testdir && ./run_make_tests -make_path $$here/make"
+         cd $$testdir && ./run_make_tests -make_path $$here/make
 
 # Install the w32 subdirectory
 #
diff --git a/NEWS b/NEWS
index 197e1b2..60ebca0 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -9,6 +9,9 @@ Please send GNU make bug reports to bug-gnu-utils@prep.ai.mit.edu.
 \f
 Version 3.76
 
+* GNU make now uses automake to control Makefile.in generation.  This
+  should make it more consistent with the GNU standards.
+
 * VPATH functionality has been changed to incorporate the VPATH+ patch,
   previously maintained by Paul Smith <psmith@baynetworks.com>.  See the
   manual.