diff options
author | midipix <writeonce@midipix.org> | 2021-06-15 16:18:19 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-15 16:18:47 +0000 |
commit | 4718678e27b239e40a37d3cdd1fd97fb5ac628fa (patch) | |
tree | 2ce068570cf9171b6e5aef9bfc197da48033d9a7 /configure | |
parent | eccce80ad423e9189a19edb598c009e203b95fab (diff) | |
download | tpax-4718678e27b239e40a37d3cdd1fd97fb5ac628fa.tar.bz2 tpax-4718678e27b239e40a37d3cdd1fd97fb5ac628fa.tar.xz |
build system: configure: config_ccenv(): fix typo.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -853,11 +853,11 @@ config_ccenv() else case "$mb_libdir" in /*) - mb_ldflags_last="$mb_cflags_last -I$mb_sysroot/.$mb_includedir" + mb_cflags_last="$mb_cflags_last -I$mb_sysroot/.$mb_includedir" mb_ldflags_last="$mb_ldflags_last -L$mb_sysroot/.$mb_libdir" ;; *) - mb_ldflags_last="$mb_cflags_last -I$mb_includedir" + mb_cflags_last="$mb_cflags_last -I$mb_includedir" mb_ldflags_last="$mb_ldflags_last -L$mb_libdir" esac fi |