diff options
author | midipix <writeonce@midipix.org> | 2024-02-24 00:06:26 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-02-24 00:06:26 +0000 |
commit | db13969653bb99be7e5ce02c013079fe6e7ed0da (patch) | |
tree | f099d59c7e5222e58f7dac86339c81abbedda685 /configure | |
parent | 30e15bfa0d6e215fa91cc3b76604829541a3188e (diff) | |
download | slibtool-db13969653bb99be7e5ce02c013079fe6e7ed0da.tar.bz2 slibtool-db13969653bb99be7e5ce02c013079fe6e7ed0da.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() |