From 9ba5d3147f40707ea52b79bff14d636a89166ef8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucio=20Andr=C3=A9s=20Illanes=20Albornoz=20=28arab=2C=20vx?= =?UTF-8?q?p=29?= Date: Sat, 27 Feb 2016 13:07:27 +0100 Subject: Replaced [ "x${... constructions w/ the equally portable [ "${.... --- 003.psxstub.vars | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '003.psxstub.vars') diff --git a/003.psxstub.vars b/003.psxstub.vars index 4683b7ab..991f72a3 100644 --- a/003.psxstub.vars +++ b/003.psxstub.vars @@ -4,8 +4,8 @@ pkg_psxstub_finish() { if ! is_build_script_done install; then - if [ "x${TARGET}" = "xi686-nt32-midipix" ]\ - || [ "x${TARGET}" = "xx86_64-nt64-midipix" ]; then + if [ "${TARGET}" = i686-nt32-midipix ]\ + || [ "${TARGET}" = x86_64-nt64-midipix ]; then cd psxstub; make ${MAKEFLAGS} DESTDIR=${PREFIX_LVL} TARGET=${TARGET} install; set_build_script_done install finish; -- cgit v1.2.3