mirror of
https://github.com/mirror/make.git
synced 2025-02-25 19:30:48 +08:00
Fixups for the release. One bug fix, some automake complaint fixes,
and a function return type fix for older systems.
This commit is contained in:
parent
4a11acf047
commit
d7ebcadadb
@ -1,3 +1,11 @@
|
||||
2002-09-12 Paul D. Smith <psmith@gnu.org>
|
||||
|
||||
* Makefile.am (loadavg_SOURCES, loadavg.c): Tiptoe around automake
|
||||
so it doesn't complain about getloadavg.c.
|
||||
|
||||
* commands.c (set_file_variables): Make sure we always alloca() at
|
||||
least 1 character for the value of $? (for '\0').
|
||||
|
||||
2002-09-11 Paul D. Smith <psmith@gnu.org>
|
||||
|
||||
* hash.h (STRING_COMPARE, ISTRING_COMPARE, STRING_N_COMPARE): Fix
|
||||
|
@ -121,10 +121,13 @@ check-loadavg: loadavg
|
||||
|
||||
# The loadavg function is invoked during "make check" to test getloadavg.
|
||||
noinst_PROGRAMS = loadavg
|
||||
loadavg_SOURCES = getloadavg.c
|
||||
loadavg_SOURCES = loadavg.c
|
||||
loadavg_CFLAGS = -DTEST
|
||||
loadavg_LDADD = @GETLOADAVG_LIBS@
|
||||
|
||||
loadavg.c: $(srcdir)/getloadavg.c
|
||||
cp $(srcdir)/getloadavg.c loadavg.c
|
||||
|
||||
# > check-regression
|
||||
#
|
||||
# Look for the make test suite, and run it if found and we can find perl.
|
||||
|
@ -149,7 +149,7 @@ set_file_variables (file)
|
||||
|
||||
cp = plus_value = (char *) alloca (plus_len);
|
||||
|
||||
qmark_len = plus_len; /* Will be this or less. */
|
||||
qmark_len = plus_len + 1; /* Will be this or less. */
|
||||
for (d = file->deps; d != 0; d = d->next)
|
||||
if (! d->ignore_mtime)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user