summaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-10-28 02:20:09 -0400
committermidipix <writeonce@midipix.org>2016-11-10 23:35:24 -0500
commit7f572b6b12a406fc0dd5b1805e310439a7e65397 (patch)
tree58b4aecd25b1585a15e28e72eada87f5c7b53569 /configure
parent05c9b561ebd8fffca79b0d835ec50bf4d946aa57 (diff)
downloadperk-7f572b6b12a406fc0dd5b1805e310439a7e65397.tar.bz2
perk-7f572b6b12a406fc0dd5b1805e310439a7e65397.tar.xz
build system: fix support of CC, CPP, and CXX directly passed to configure.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure b/configure
index 59a7640..7139ece 100755
--- a/configure
+++ b/configure
@@ -73,6 +73,10 @@ init_vars()
mb_native_os=$NATIVE_OS
mb_native_os_bits=$NATIVE_OS_BITS
mb_native_os_underscore=$NATIVE_OS_UNDERSCORE
+
+ mb_user_cc=$CC
+ mb_user_cpp=$CPP
+ mb_user_cxx=$CXX
}
@@ -300,6 +304,10 @@ config_copy()
-e 's^@native_os@^'"$mb_native_os"'^g' \
-e 's^@native_os_bits@^'"$mb_native_os_bits"'^g' \
-e 's^@native_os_underscore@^'"$mb_native_os_underscore"'^g' \
+ \
+ -e 's^@user_cc@^'"$mb_user_cc"'^g' \
+ -e 's^@user_cpp@^'"$mb_user_cpp"'^g' \
+ -e 's^@user_cxx@^'"$mb_user_cxx"'^g' \
$mb_project_dir/Makefile.in > $mb_pwd/Makefile
}