diff options
author | Martin Liska <mliska@suse.cz> | 2017-06-28 09:54:14 +0200 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2017-06-28 07:54:14 +0000 |
commit | c8cf0b6f2294998ff741b77b3bcb0546e474dfcc (patch) | |
tree | 467db6768f750bc6fbd39438f67d01e639cae34e | |
parent | f2bcf09e917a0135f360513e08b61e9011f5710e (diff) | |
download | gcc-c8cf0b6f2294998ff741b77b3bcb0546e474dfcc.zip gcc-c8cf0b6f2294998ff741b77b3bcb0546e474dfcc.tar.gz gcc-c8cf0b6f2294998ff741b77b3bcb0546e474dfcc.tar.bz2 |
re PR bootstrap/81217 (Makefile:22754: warning: overriding recipe for target 'profiledbootstrap')
Fix PR bootstrap/81217
2017-06-28 Martin Liska <mliska@suse.cz>
PR bootstrap/81217
* Makefile.def: Remove superfluous bootstrap_target from
bootstrap_stage.
* Makefile.in: Re-generate the file.
From-SVN: r249726
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Makefile.def | 3 | ||||
-rw-r--r-- | Makefile.in | 23 |
3 files changed, 8 insertions, 25 deletions
@@ -1,3 +1,10 @@ +2017-06-28 Martin Liska <mliska@suse.cz> + + PR bootstrap/81217 + * Makefile.def: Remove superfluous bootstrap_target from + bootstrap_stage. + * Makefile.in: Re-generate the file. + 2017-06-26 Maxim Ostapenko <m.ostapenko@samsung.com> * MAINTAINERS: Add myself to Write After Approval diff --git a/Makefile.def b/Makefile.def index 08d0dc0..bd7b080 100644 --- a/Makefile.def +++ b/Makefile.def @@ -623,8 +623,7 @@ bootstrap_stage = { bootstrap_stage = { id=profile ; prev=1 ; }; bootstrap_stage = { - id=train; prev=profile ; - bootstrap_target=profiledbootstrap ; }; + id=train; prev=profile ; } ; bootstrap_stage = { id=feedback ; prev=train; bootstrap_target=profiledbootstrap ; }; diff --git a/Makefile.in b/Makefile.in index 2e2e504..78db098 100644 --- a/Makefile.in +++ b/Makefile.in @@ -56151,29 +56151,6 @@ do-clean: clean-stagetrain -.PHONY: profiledbootstrap profiledbootstrap-lean -profiledbootstrap: - echo stagetrain > stage_final - @r=`${PWD_COMMAND}`; export r; \ - s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ - $(MAKE) $(RECURSE_FLAGS_TO_PASS) stagetrain-bubble - @: $(MAKE); $(unstage) - @r=`${PWD_COMMAND}`; export r; \ - s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ - TFLAGS="$(STAGEtrain_TFLAGS)"; \ - $(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target - -profiledbootstrap-lean: - echo stagetrain > stage_final - @r=`${PWD_COMMAND}`; export r; \ - s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ - $(MAKE) $(RECURSE_FLAGS_TO_PASS) LEAN=: stagetrain-bubble - @: $(MAKE); $(unstage) - @r=`${PWD_COMMAND}`; export r; \ - s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ - TFLAGS="$(STAGEtrain_TFLAGS)"; \ - $(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target - # Rules to wipe a stage and all the following ones, also used for cleanstrap distclean-stageprofile:: distclean-stagetrain |