diff options
author | midipix <writeonce@midipix.org> | 2021-06-15 16:18:19 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-15 16:18:45 +0000 |
commit | a0ada433258156f9313872de96f4f7ac54fc354e (patch) | |
tree | 64ea838a2853d2f5f53dfdd543c40563f0c0d5bd | |
parent | 6a78ab96e2dc2dd0f81927fad4996e7368d7c5f2 (diff) | |
download | bcparser-a0ada433258156f9313872de96f4f7ac54fc354e.tar.bz2 bcparser-a0ada433258156f9313872de96f4f7ac54fc354e.tar.xz |
build system: configure: config_ccenv(): fix typo.
-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 |