diff -urP ../make-3.76/ChangeLog ./ChangeLog --- ../make-3.76/ChangeLog Tue Sep 16 10:19:43 1997 +++ ./ChangeLog Fri Sep 19 12:33:53 1997 @@ -1,3 +1,13 @@ +Fri Sep 19 09:20:49 1997 Paul D. Smith + + * Makefile.am: Add loadavg files to clean rules. + + * configure.in (AC_OUTPUT): Remove stamp-config; no longer needed. + * Makefile.ami (distclean): Ditto. + * SMakefile (distclean): Ditto. + + * main.c (main): Arg count should be int, not char! Major braino. + Tue Sep 16 10:18:22 1997 Paul D. Smith * Version 3.76 released. diff -urP ../make-3.76/Makefile.DOS ./Makefile.DOS --- ../make-3.76/Makefile.DOS Tue Sep 16 13:13:40 1997 +++ ./Makefile.DOS Fri Sep 19 14:40:52 1997 @@ -55,7 +55,7 @@ PACKAGE = make RANLIB = ranlib REMOTE = stub -VERSION = 3.76 +VERSION = 3.76.1 AUTOMAKE_OPTIONS = 1.2 diff -urP ../make-3.76/Makefile.am ./Makefile.am --- ../make-3.76/Makefile.am Fri Sep 5 17:01:53 1997 +++ ./Makefile.am Fri Sep 19 11:14:29 1997 @@ -28,6 +28,9 @@ SUBDIRS = glob +MOSTLYCLEANFILES = loadavg.c +CLEANFILES = loadavg + # --------------- Local DIST Section # Install the w32 subdirectory @@ -66,7 +69,7 @@ # specified, or else in the srcdir or the distdir, their parents, and _their_ # parents. # -check-regression: +check-regression: all here=`pwd`; testdir=""; \ case "$(MAKE_TEST)" in "") \ for d1 in $$here $(srcdir); do \ diff -urP ../make-3.76/Makefile.ami ./Makefile.ami --- ../make-3.76/Makefile.ami Wed Aug 27 16:31:00 1997 +++ ./Makefile.ami Fri Sep 19 10:19:22 1997 @@ -245,7 +245,7 @@ -$(RM) make loadavg "#?.o" core make.dvi distclean: clean glob-realclean - -$(RM) Makefile config.h config.status build.sh stamp-config + -$(RM) Makefile config.h config.status build.sh -$(RM) config.log config.cache -$(RM) TAGS tags -$(RM) make.?? make.??s make.log make.toc make.*aux diff -urP ../make-3.76/Makefile.in ./Makefile.in --- ../make-3.76/Makefile.in Tue Sep 16 13:13:43 1997 +++ ./Makefile.in Fri Sep 19 14:58:51 1997 @@ -86,6 +86,9 @@ vmsfunctions.c vmsify.c SUBDIRS = glob + +MOSTLYCLEANFILES = loadavg.c +CLEANFILES = loadavg ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = config.h @@ -580,7 +583,7 @@ # specified, or else in the srcdir or the distdir, their parents, and _their_ # parents. # -check-regression: +check-regression: all here=`pwd`; testdir=""; \ case "$(MAKE_TEST)" in "") \ for d1 in $$here $(srcdir); do \ diff -urP ../make-3.76/NEWS ./NEWS --- ../make-3.76/NEWS Tue Sep 16 10:17:26 1997 +++ ./NEWS Fri Sep 19 14:58:39 1997 @@ -1,11 +1,15 @@ GNU make NEWS -*-indented-text-*- History of user-visible changes. - 18 Aug 1997 + 19 Sep 1997 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc. See the end for copying conditions. Please send GNU make bug reports to bug-gnu-utils@prep.ai.mit.edu. + +Version 3.76.1 + +* Small (but serious) bug fix. Quick rollout to get into the GNU source CD. Version 3.76 diff -urP ../make-3.76/README ./README --- ../make-3.76/README Tue Sep 16 11:16:17 1997 +++ ./README Fri Sep 19 14:40:48 1997 @@ -1,4 +1,4 @@ -This directory contains the 3.76 release of GNU Make. +This directory contains the 3.76.1 release of GNU Make. All bugs reported for previous releases have been fixed. Some bugs surely remain. diff -urP ../make-3.76/SMakefile ./SMakefile --- ../make-3.76/SMakefile Mon May 13 14:38:10 1996 +++ ./SMakefile Fri Sep 19 10:19:30 1997 @@ -192,7 +192,7 @@ -$(RM) -f make loadavg *.o core make.dvi distclean: clean glob-realclean - -$(RM) -f Makefile config.h config.status build.sh stamp-config + -$(RM) -f Makefile config.h config.status build.sh -$(RM) -f config.log config.cache -$(RM) -f TAGS tags -$(RM) -f make.?? make.??s make.log make.toc make.*aux diff -urP ../make-3.76/config.ami ./config.ami --- ../make-3.76/config.ami Tue Sep 16 11:04:13 1997 +++ ./config.ami Fri Sep 19 14:40:51 1997 @@ -166,7 +166,7 @@ #define PACKAGE "make" /* Version of this package (needed by automake) */ -#define VERSION "3.76" +#define VERSION "3.76.1" /* Define to the name of the SCCS `get' command. */ #define SCCS_GET "get" diff -urP ../make-3.76/config.h-vms ./config.h-vms --- ../make-3.76/config.h-vms Tue Sep 16 11:04:14 1997 +++ ./config.h-vms Fri Sep 19 14:40:53 1997 @@ -166,7 +166,7 @@ #define PACKAGE "make" /* Version of this package (needed by automake) */ -#define VERSION "3.76" +#define VERSION "3.76.1" /* Define vfork as fork if vfork does not work. */ /* #undef vfork */ diff -urP ../make-3.76/config.h.W32 ./config.h.W32 --- ../make-3.76/config.h.W32 Tue Sep 16 11:04:14 1997 +++ ./config.h.W32 Fri Sep 19 14:40:52 1997 @@ -180,7 +180,7 @@ #define PACKAGE "make" /* Version of this package (needed by automake) */ -#define VERSION "3.76" +#define VERSION "3.76.1" /* Define to the name of the SCCS `get' command. */ #undef SCCS_GET diff -urP ../make-3.76/configh.dos ./configh.dos --- ../make-3.76/configh.dos Tue Sep 16 11:04:14 1997 +++ ./configh.dos Fri Sep 19 14:40:52 1997 @@ -7,7 +7,7 @@ #define PACKAGE "make" /* Version of this package (needed by automake) */ -#define VERSION "3.76" +#define VERSION "3.76.1" /* Define NSIG. */ #define NSIG SIGMAX diff -urP ../make-3.76/configure ./configure --- ../make-3.76/configure Tue Sep 16 11:00:29 1997 +++ ./configure Fri Sep 19 14:37:14 1997 @@ -637,7 +637,7 @@ PACKAGE=make -VERSION=3.76 +VERSION=3.76.1 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; } @@ -3687,9 +3687,6 @@ cat >> $CONFIG_STATUS <<\EOF test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h -# Makefile uses this timestamp file to know when to remake Makefile, -# build.sh, and glob/Makefile. -touch stamp-config exit 0 EOF chmod +x $CONFIG_STATUS diff -urP ../make-3.76/configure.in ./configure.in --- ../make-3.76/configure.in Tue Sep 16 10:17:28 1997 +++ ./configure.in Fri Sep 19 10:28:37 1997 @@ -3,7 +3,7 @@ AC_PREREQ(2.12)dnl dnl Minimum Autoconf version required. AC_INIT(vpath.c)dnl dnl A distinctive file to look for in srcdir. -AM_INIT_AUTOMAKE(make, 3.76) +AM_INIT_AUTOMAKE(make, 3.76.1) AM_CONFIG_HEADER(config.h) AC_CONFIG_SUBDIRS(glob) @@ -114,10 +114,7 @@ fi rm -f s.conftest conftoast -AC_OUTPUT(Makefile build.sh, [ -# Makefile uses this timestamp file to know when to remake Makefile, -# build.sh, and glob/Makefile. -touch stamp-config]) +AC_OUTPUT(Makefile build.sh) dnl Local Variables: dnl comment-start: "dnl " diff -urP ../make-3.76/main.c ./main.c --- ../make-3.76/main.c Wed Aug 27 16:31:15 1997 +++ ./main.c Fri Sep 19 09:20:44 1997 @@ -1256,7 +1256,7 @@ time_t *makefile_mtimes = 0; unsigned int mm_idx = 0; char **nargv = argv; - char nargc = argc; + int nargc = argc; if (debug_flag) puts ("Updating makefiles....");