diff options
author | midipix <writeonce@midipix.org> | 2021-06-09 19:42:04 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-10 09:08:26 +0000 |
commit | bf65e25999a4fa5cf6b1b36cae9a5b08908f634f (patch) | |
tree | 5dc717dcc7aa2da1ce5276be6d76bfc9249455c4 /configure | |
parent | 4830d10e5e18f1064049b4562baf05f8aa913db2 (diff) | |
download | bautomake-bf65e25999a4fa5cf6b1b36cae9a5b08908f634f.tar.bz2 bautomake-bf65e25999a4fa5cf6b1b36cae9a5b08908f634f.tar.xz |
build system: configure: init_vars(): record explicit CCHOST and --cchost.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -207,6 +207,11 @@ init_vars() mb_source_dir_set=yes fi + # cchost + if [ -n "$CCHOST" ]; then + mb_cchost_set=yes + fi + # step prolog output_step_prolog ${mb_script} 'init_vars' @@ -1111,6 +1116,7 @@ for arg ; do ;; --cchost=*) mb_cchost=${arg#*=} + mb_cchost_set=yes ;; --cfghost=*) mb_cfghost=${arg#*=} |