diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2015-09-29 16:22:49 -0700 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2015-09-29 16:22:49 -0700 |
commit | 4f266e1a8c78cec2c425b17784576db56125bbbd (patch) | |
tree | e28732437ddc94ed35056c145807a46addafd34f /Makefile.in | |
parent | 6baef82c26f0586ce53373760ac550b0d2536626 (diff) | |
download | crosstool-ng-4f266e1a8c78cec2c425b17784576db56125bbbd.tar.gz crosstool-ng-4f266e1a8c78cec2c425b17784576db56125bbbd.tar.bz2 crosstool-ng-4f266e1a8c78cec2c425b17784576db56125bbbd.zip |
configure: Add automated build option
This commit introduces a configure time option to let the build know
that this is going to be an automated build.
This forces the build to disable the progress bar, log tool warnings,
and force the log level to debug.
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 895983b4..c7494f55 100644 --- a/Makefile.in +++ b/Makefile.in @@ -46,6 +46,7 @@ all: Makefile build # Stuff found by ./configure export DATE := @DATE@ export LOCAL := @enable_local@ +export AUTOMATED := @enable_automated@ export PROG_SED := @program_transform_name@ export PACKAGE_TARNAME := @PACKAGE_TARNAME@ export VERSION := @PACKAGE_VERSION@ |