diff options
author | midipix <writeonce@midipix.org> | 2021-06-12 13:45:53 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-12 14:56:00 +0000 |
commit | 99013d62dd71fc2e8e54455e380f48046d54952c (patch) | |
tree | 94170785e269d42780678094c0b4a9f53ee91b8d /configure | |
parent | a3f1efdcc23f6a2b1fe144ab74aec7ad297fcc22 (diff) | |
download | ptycon-99013d62dd71fc2e8e54455e380f48046d54952c.tar.bz2 ptycon-99013d62dd71fc2e8e54455e380f48046d54952c.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 |