summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.cvs2
-rw-r--r--job.c2
-rw-r--r--tests/scripts/features/parallelism4
3 files changed, 4 insertions, 4 deletions
diff --git a/README.cvs b/README.cvs
index 634a366..017f65c 100644
--- a/README.cvs
+++ b/README.cvs
@@ -152,7 +152,7 @@ what you do:
Make sure the "Steps to Release" are complete and committed and tagged.
- cvs -d :pserver:anonymous@cvs.savannah.gnu.org:/source/make \
+ cvs -d :pserver:anonymous@cvs.savannah.gnu.org:/sources/make \
export -r<RTAG> -d make-release make
cd make-release
diff --git a/job.c b/job.c
index 793a61b..a81cd81 100644
--- a/job.c
+++ b/job.c
@@ -716,7 +716,7 @@ reap_children (int block, int err)
if (c->good_stdin)
good_stdin_used = 0;
- dontcare = c->file->dontcare;
+ dontcare = c->dontcare;
if (child_failed && !c->noerror && !ignore_errors_flag)
{
diff --git a/tests/scripts/features/parallelism b/tests/scripts/features/parallelism
index 528c653..9eb196d 100644
--- a/tests/scripts/features/parallelism
+++ b/tests/scripts/features/parallelism
@@ -147,12 +147,12 @@ recurse: ; @$(MAKE) --no-print-directory -f #MAKEFILE# submake INCL=true',
'-j2',
'bar');
-unlink('dependfile');
+unlink('dependfile', 'output');
# Do it again, this time where the include is done by the non-master make.
run_make_test(undef, '-j2 recurse INCL=false', 'bar');
-unlink('dependfile');
+unlink('dependfile', 'output');
1;