summaryrefslogtreecommitdiffhomepage
path: root/003.psxstub.build
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-02-06 15:11:56 +0100
committerLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-02-06 15:11:56 +0100
commit6e940c2c85759ac197c29d335a929dd06822a9df (patch)
tree1253fde47e8c61b0c2d62f44bb193bd5507beeef /003.psxstub.build
parentbd43d02c5f32a6d4d3f11ebcac4588ff77069173 (diff)
downloadmidipix_build-6e940c2c85759ac197c29d335a929dd06822a9df.tar.bz2
midipix_build-6e940c2c85759ac197c29d335a929dd06822a9df.tar.xz
- Changed sha256sum (1) file verification logic to use dgst(1SSL) instead.
- Removed support for particularly pathnames with whitespace or tab cha- racters. If you have whitespaces in your pathnames anyway, the script will methodically destroy every single file on your disk(s).
Diffstat (limited to '003.psxstub.build')
-rw-r--r--003.psxstub.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/003.psxstub.build b/003.psxstub.build
index 37d4fcdd..81eb8ed8 100644
--- a/003.psxstub.build
+++ b/003.psxstub.build
@@ -1,9 +1,9 @@
if is_build_script_done finished; then
exit 212;
-elif [ "${TARGET}" = "i686-nt32-midipix" ]\
-|| [ "${TARGET}" = "x86_64-nt64-midipix" ]; then
+elif [ "x${TARGET}" = "xi686-nt32-midipix" ]\
+|| [ "x${TARGET}" = "xx86_64-nt64-midipix" ]; then
cd psxstub;
- make ${MAKEFLAGS} DESTDIR="${PREFIX_TARGET}" TARGET="${TARGET}" install;
+ make ${MAKEFLAGS} DESTDIR=${PREFIX_TARGET} TARGET=${TARGET} install;
set_build_script_done finished;
fi;