mirror of
https://github.com/mirror/make.git
synced 2025-03-10 01:30:37 +08:00
* Some minor pre-release updates.
This commit is contained in:
parent
6ec7d1881c
commit
45e04a5860
@ -1,5 +1,7 @@
|
|||||||
1999-09-15 Paul D. Smith <psmith@gnu.org>
|
1999-09-15 Paul D. Smith <psmith@gnu.org>
|
||||||
|
|
||||||
|
* Version 3.77.97 released.
|
||||||
|
|
||||||
* configure.in (MAKE_HOST): AC_SUBST this so it will go into the
|
* configure.in (MAKE_HOST): AC_SUBST this so it will go into the
|
||||||
makefile.
|
makefile.
|
||||||
* Makefile.am (check-local): Print a success banner if the check
|
* Makefile.am (check-local): Print a success banner if the check
|
||||||
|
@ -76,11 +76,13 @@ dist-hook:
|
|||||||
# --------------- Local CHECK Section
|
# --------------- Local CHECK Section
|
||||||
|
|
||||||
check-local: check-regression check-loadavg
|
check-local: check-regression check-loadavg
|
||||||
@banner="Regression passed: GNU Make $(VERSION) ($(MAKE_HOST)) built with $(CC)"; \
|
@banner=" Regression PASSED: GNU Make $(VERSION) ($(MAKE_HOST)) built with $(CC) "; \
|
||||||
dashes=`echo "$$banner" | sed s/./=/g`; \
|
dashes=`echo "$$banner" | sed s/./=/g`; \
|
||||||
|
echo; \
|
||||||
echo "$$dashes"; \
|
echo "$$dashes"; \
|
||||||
echo "$$banner"; \
|
echo "$$banner"; \
|
||||||
echo "$$dashes"
|
echo "$$dashes"; \
|
||||||
|
echo
|
||||||
|
|
||||||
.PHONY: check-loadavg check-regression
|
.PHONY: check-loadavg check-regression
|
||||||
|
|
||||||
|
5
NEWS
5
NEWS
@ -60,6 +60,11 @@ Version 3.78
|
|||||||
|
|
||||||
* The Windows 95/98/NT (W32) version of GNU make now has native support
|
* The Windows 95/98/NT (W32) version of GNU make now has native support
|
||||||
for the Cygnus Cygwin release B20.1 shell (bash).
|
for the Cygnus Cygwin release B20.1 shell (bash).
|
||||||
|
|
||||||
|
* The GNU make regression test suite, long available separately "under
|
||||||
|
the table", has been integrated into the release. You can invoke it
|
||||||
|
by running "make check" in the distribution. Note that it requires
|
||||||
|
Perl (either Perl 4 or Perl 5) to run.
|
||||||
|
|
||||||
Version 3.77
|
Version 3.77
|
||||||
|
|
||||||
|
@ -74,9 +74,8 @@ debug this code, you can do `make check-loadavg' to see if it works
|
|||||||
properly on your system. (You must run `configure' beforehand, but you
|
properly on your system. (You must run `configure' beforehand, but you
|
||||||
need not build Make itself to run this test.)
|
need not build Make itself to run this test.)
|
||||||
|
|
||||||
Another potential source of porting problems is the configure support
|
Another potential source of porting problems is the support for large
|
||||||
enabling GNU make to access large files (LFS) on those operating systems
|
files (LFS) in configure for those operating systems that provide it.
|
||||||
that support them. Please report any bugs that you find in this area.
|
Please report any bugs that you find in this area. If you run into
|
||||||
If you run into difficulties, then as a workaround you should be able to
|
difficulties, then as a workaround you should be able to disable LFS by
|
||||||
disable LFS by adding the `--disable-largefile' option to the
|
adding the `--disable-largefile' option to the `configure' script.
|
||||||
`configure' script.
|
|
||||||
|
@ -225,8 +225,8 @@ AC_OUTPUT(build.sh Makefile glob/Makefile)
|
|||||||
|
|
||||||
dnl If we don't yet have build.sh.in, build.sh is a bogus 0-length file
|
dnl If we don't yet have build.sh.in, build.sh is a bogus 0-length file
|
||||||
dnl so remove it.
|
dnl so remove it.
|
||||||
|
dnl Can't do this because then remote builds with build.sh don't work.
|
||||||
test -f build.sh.in || rm -f build.sh
|
dnl test -f build.sh.in || rm -f build.sh
|
||||||
|
|
||||||
|
|
||||||
case "$make_badcust" in
|
case "$make_badcust" in
|
||||||
|
@ -52,7 +52,7 @@ NMakefile: NMakefile.template .dep_segment Makefile
|
|||||||
#
|
#
|
||||||
build.sh.in: build.template Makefile
|
build.sh.in: build.template Makefile
|
||||||
rm -f $@
|
rm -f $@
|
||||||
sed -e 's@%objs%@$(filter-out remote-%, $(make_OBJECTS)@g' \
|
sed -e 's@%objs%@$(filter-out remote-%,$(make_OBJECTS)@g' \
|
||||||
-e 's@%globobjs%@$(patsubst %.c,%.o,$(globsrc)))@g' \
|
-e 's@%globobjs%@$(patsubst %.c,%.o,$(globsrc)))@g' \
|
||||||
$< > $@
|
$< > $@
|
||||||
chmod a-w+x $@
|
chmod a-w+x $@
|
||||||
|
Loading…
Reference in New Issue
Block a user