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 | edb8772d9751c1f145b418d6f52c6630aabf82fb (patch) | |
tree | 24b9f3c5437fe7ecd4181e66daba1746b4850e5b /configure | |
parent | f415c6ff856841482d26e821538b4adb71b66cfc (diff) | |
download | perk-edb8772d9751c1f145b418d6f52c6630aabf82fb.tar.bz2 perk-edb8772d9751c1f145b418d6f52c6630aabf82fb.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 |