diff options
author | midipix <writeonce@midipix.org> | 2021-06-12 13:45:53 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-12 14:55:56 +0000 |
commit | a70e1205ccbd38269bacf656acfe7fc74b77ca24 (patch) | |
tree | 435be181c6e36fb80dd98901bc38b218afe18168 /configure | |
parent | 75187eefd487990aed438bdf1a3a8bd7743c6f99 (diff) | |
download | bautomake-a70e1205ccbd38269bacf656acfe7fc74b77ca24.tar.bz2 bautomake-a70e1205ccbd38269bacf656acfe7fc74b77ca24.tar.xz |
build system: ccenv: added and integrated ccenv_set_cc_sysroot_vars().
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -651,11 +651,11 @@ common_defaults() # sysroot if [ -n "$mb_sysroot" ]; then if [ -z "$mb_cflags_sysroot" ]; then - mb_cflags_sysroot="--sysroot=$mb_sysroot" + mb_cflags_sysroot='$(_CFLAGS_SYSROOT)' fi if [ -z "$mb_ldflags_sysroot" ]; then - mb_ldflags_sysroot="--sysroot=$mb_sysroot" + mb_ldflags_sysroot='$(_LDFLAGS_SYSROOT)' fi fi |