summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-06-15 16:18:19 +0000
committermidipix <writeonce@midipix.org>2021-06-15 16:18:46 +0000
commitfd2d1d0b5c00ebbc377a8a70d7fe5aea0a76bb19 (patch)
tree95f09919cc059c708588b588ac6b5df06d846736
parent1cbe096ca0fd8ce1640bdce68dafe907184b0f12 (diff)
downloadsbpython3-fd2d1d0b5c00ebbc377a8a70d7fe5aea0a76bb19.tar.bz2
sbpython3-fd2d1d0b5c00ebbc377a8a70d7fe5aea0a76bb19.tar.xz
build system: configure: config_ccenv(): fix typo.
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 807d556..033f89c 100755
--- a/configure
+++ b/configure
@@ -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