summaryrefslogtreecommitdiffhomepage
path: root/vars/llvm_host.vars
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2020-02-26 21:54:12 +0000
committerLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2020-02-26 21:54:12 +0000
commitc6d6e08feab839a9dc5792071fb803494cc51a69 (patch)
tree1513c817e4446ac3cf512d6c1f287a10fc1daf2e /vars/llvm_host.vars
parent4a5da5254e1207686f492e7ce8759c80466185f3 (diff)
downloadmidipix_build-c6d6e08feab839a9dc5792071fb803494cc51a69.tar.bz2
midipix_build-c6d6e08feab839a9dc5792071fb803494cc51a69.tar.xz
General cleanup, pt. II.
Diffstat (limited to 'vars/llvm_host.vars')
-rw-r--r--vars/llvm_host.vars10
1 files changed, 5 insertions, 5 deletions
diff --git a/vars/llvm_host.vars b/vars/llvm_host.vars
index 41e10b2a..7d5f7a3a 100644
--- a/vars/llvm_host.vars
+++ b/vars/llvm_host.vars
@@ -3,10 +3,10 @@
#
pkg_llvm_host_configure() {
- ex_rtl_fileop rm "../llvm-${PKG_VERSION}-host";
- ex_rtl_fileop mkdir "../llvm-${PKG_VERSION}-host";
- ex_rtl_fileop cd "../llvm-${PKG_VERSION}-host";
- ex_rtl_log_msg info "Bootstrapping llvm_host...";
+ rtl_fileop rm "../llvm-${PKG_VERSION}-host";
+ rtl_fileop mkdir "../llvm-${PKG_VERSION}-host";
+ rtl_fileop cd "../llvm-${PKG_VERSION}-host";
+ rtl_log_msg info "Bootstrapping llvm_host...";
("${PREFIX}/bin/cmake" \
"../llvm-${PKG_VERSION}.src" \
-DCMAKE_BUILD_TYPE=Release \
@@ -20,7 +20,7 @@ pkg_llvm_host_configure() {
-DSPHINX_WARNINGS_AS_ERRORS=NO \
-G "Unix Makefiles" \
-Wno-dev);
- ex_rtl_log_msg info "Finished bootstrapping llvm_host.";
+ rtl_log_msg info "Finished bootstrapping llvm_host.";
};
# vim:filetype=sh