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 | 71bd9c3fbcb17f48a27d0cd90988d9240653899e (patch) | |
tree | 00a2cad009bd28ce4ec0795485afe316ab9a8652 /configure | |
parent | 7e5f4a2875add6191bd9b2c82c793599e27673ed (diff) | |
download | u16ports-71bd9c3fbcb17f48a27d0cd90988d9240653899e.tar.bz2 u16ports-71bd9c3fbcb17f48a27d0cd90988d9240653899e.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 |