diff options
author | midipix <writeonce@midipix.org> | 2024-02-24 00:06:26 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-02-24 00:09:24 +0000 |
commit | c27bc4a0e158d413971029b46343c9d5d45a30e6 (patch) | |
tree | 6bce0d43b1482b51d87d6385814137a507619c66 /configure | |
parent | a565b203a6b68dd59099960267883ff55e459e23 (diff) | |
download | bautomake-c27bc4a0e158d413971029b46343c9d5d45a30e6.tar.bz2 bautomake-c27bc4a0e158d413971029b46343c9d5d45a30e6.tar.xz |
build system: configure: do not (potentially) change the search path semantics.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 17 |
1 files changed, 0 insertions, 17 deletions
@@ -847,26 +847,9 @@ config_ccenv() error_msg "${mb_pretty} forcing native mode when cross-building is strictly prohibited." fi - # add the include and library directories to the compiler and linker search path - if [ "$mb_cchost" = "$mb_native_cchost" ]; then - mb_cflags_last="$mb_cflags_last -I$mb_includedir" - mb_ldflags_last="$mb_ldflags_last -L$mb_libdir" - else - case "$mb_libdir" in - /*) - mb_cflags_last="$mb_cflags_last -I$mb_sysroot/.$mb_includedir" - mb_ldflags_last="$mb_ldflags_last -L$mb_sysroot/.$mb_libdir" - ;; - *) - mb_cflags_last="$mb_cflags_last -I$mb_includedir" - mb_ldflags_last="$mb_ldflags_last -L$mb_libdir" - esac - fi - # re-generate Makefile.tmp output_section_break config_copy - } config_custom_cfgdefs() |