diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2009-08-30 14:33:13 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2009-08-30 14:33:13 +0000 |
commit | 872642768c84f7f57477ce576bc478160c5c6236 (patch) | |
tree | fda17eac92efaded51e7de4b24ac3e07f8351c30 /Makefile.tpl | |
parent | c390c36118a44e574f0f31a7718fbb980aad694a (diff) | |
download | gcc-872642768c84f7f57477ce576bc478160c5c6236.tar.gz |
configure.ac: Detect awk and sed.
2009-08-30 Paolo Bonzini <bonzini@gnu.org>
* configure.ac: Detect awk and sed.
* Makefile.def (flags_to_pass): Add AWK and SED.
* Makefile.tpl (AWK, SED): New.
(BASE_FLAGS_TO_PASS): Add AWK and SED.
* configure: Regenerate.
* Makefile.in: Regenerate.
From-SVN: r151228
Diffstat (limited to 'Makefile.tpl')
-rw-r--r-- | Makefile.tpl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.tpl b/Makefile.tpl index 43614c1ca02..b6a06cffb6e 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -143,6 +143,8 @@ BASE_EXPORTS = \ BISON="$(BISON)"; export BISON; \ YACC="$(YACC)"; export YACC; \ M4="$(M4)"; export M4; \ + SED="$(SED)"; export SED; \ + AWK="$(AWK)"; export SED; \ MAKEINFO="$(MAKEINFO)"; export MAKEINFO; # This is the list of variables to export in the environment when @@ -337,6 +339,8 @@ BOOT_CFLAGS= -g -O2 BOOT_LDFLAGS= BOOT_ADAFLAGS=-gnatpg -gnata +AWK = @AWK@ +SED = @SED@ BISON = @BISON@ YACC = @YACC@ FLEX = @FLEX@ |