summaryrefslogtreecommitdiffhomepage
path: root/006.musl.full.build
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-02-27 13:07:27 +0100
committerLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-02-27 13:07:27 +0100
commit9ba5d3147f40707ea52b79bff14d636a89166ef8 (patch)
tree6a731d1f40a66585f4aae8528d9802b9737a985b /006.musl.full.build
parent6e48a090d26ba77f026c6ade823cf06f5918a1cf (diff)
downloadmidipix_build-9ba5d3147f40707ea52b79bff14d636a89166ef8.tar.bz2
midipix_build-9ba5d3147f40707ea52b79bff14d636a89166ef8.tar.xz
Replaced [ "x${... constructions w/ the equally portable [ "${....
Diffstat (limited to '006.musl.full.build')
-rw-r--r--006.musl.full.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/006.musl.full.build b/006.musl.full.build
index 7ce817c6..bb31c227 100644
--- a/006.musl.full.build
+++ b/006.musl.full.build
@@ -6,7 +6,7 @@
export lz_arch=${ARCH} lz_cflags_debug=-O2 lz_target=${TARGET};
-if [ "x${3}" = "xno-complex" ]; then
+if [ "${3}" = no-complex ]; then
# Musl: build (no-complex)
_install=install_no_complex;
set_build_dir musl-${PKG_MUSL_VERSION}-${3} cross;
@@ -24,11 +24,11 @@ if [ "x${3}" = "xno-complex" ]; then
cp -R mmglue/* musl-${PKG_MUSL_VERSION}/;
set_build_script_done extract -configure;
fi;
-elif [ "x${3}" = "xnative" ]; then
+elif [ "${3}" = native ]; then
# Musl: build (full)
_install=install;
- set_build_dir musl-${PKG_MUSL_VERSION} ${3};
-elif [ "x${3}" = "xfull" ]; then
+ set_build_dir musl-${PKG_MUSL_VERSION} "${3}";
+elif [ "${3}" = full ]; then
# Musl: build (full)
_install=install;
set_build_dir musl-${PKG_MUSL_VERSION} cross;