diff options
author | Richard Earnshaw <rearnsha@arm.com> | 2000-12-17 15:31:16 +0000 |
---|---|---|
committer | Richard Earnshaw <rearnsha@gcc.gnu.org> | 2000-12-17 15:31:16 +0000 |
commit | e108653caa0d029c8b389163f17458a94a99025c (patch) | |
tree | f91d8aa57fb57badf7298eeb43122f038b23d761 /gcc | |
parent | dfbf62ec3d64ab32260e1393039239e52b504cdc (diff) | |
download | gcc-e108653caa0d029c8b389163f17458a94a99025c.zip gcc-e108653caa0d029c8b389163f17458a94a99025c.tar.gz gcc-e108653caa0d029c8b389163f17458a94a99025c.tar.bz2 |
Makefile.in (check-po): Use $(MAKE).
* Makefile.in (check-po): Use $(MAKE).
(risky-stage1, risky-stage2, risky-stage3, risky-stage4): Likewise.
From-SVN: r38333
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 63a25ed..e343074 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-12-17 Richard Earnshaw <rearnsha@arm.com> + + * Makefile.in (check-po): Use $(MAKE). + (risky-stage1, risky-stage2, risky-stage3, risky-stage4): Likewise. + 2000-12-17 Neil Booth <neil@daikokuya.demon.co.uk> * cppmain.c (check_multiline_token): New function. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 4b3c592..fc77b1f 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2751,7 +2751,7 @@ check-objc: testsuite/site.exp check-po: if test -f cp/Makefile && test -f f/Makefile && \ test -f java/Makefile && test -f objc/Makefile; then \ - make -C po check-po; \ + $(MAKE) -C po check-po; \ fi # These exist for maintenance purposes. @@ -3031,16 +3031,16 @@ stage4: force stage4-start lang.stage4 # and delete the object files. Use this if you're just verifying a version # that is pretty sure to work, and you are short of disk space. risky-stage1: stage1 - -make clean + -$(MAKE) clean risky-stage2: stage2 - -make clean + -$(MAKE) clean risky-stage3: stage3 - -make clean + -$(MAKE) clean risky-stage4: stage4 - -make clean + -$(MAKE) clean #In GNU Make, ignore whether `stage*' exists. .PHONY: stage1 stage2 stage3 stage4 clean maintainer-clean TAGS bootstrap |