From 134887db4974060b7e9b126b011047e71290fa7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krystian=20Bac=C5=82awski?= Date: Fri, 17 Feb 2012 20:06:48 -0800 Subject: [PATCH] Don't convert case during unpacking. --- bootstrap.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index a297ac3..d6ea40b 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -53,14 +53,14 @@ function unpack_sources { popd rm -rf "${SFDC}" - lha -xq "${ARCHIVES}/${SFDC_SRC}" + lha -xgq "${ARCHIVES}/${SFDC_SRC}" tar -xzf "${SFDC}.tar.gz" for file in $(ls -1d sfdc*); do [ -f "${file}" ] && rm "${file}" done rm -rf "${NDK}" - lha -xq "${ARCHIVES}/${NDK_SRC}" + lha -xgq "${ARCHIVES}/${NDK_SRC}" rm -rf ndk_* *.info pushd "${NDK}" mkdir Include/include_h/inline @@ -70,7 +70,7 @@ function unpack_sources { popd rm -rf "${IXEMUL}" - lha -xq "${ARCHIVES}/${IXEMUL_SRC}" + lha -xgq "${ARCHIVES}/${IXEMUL_SRC}" mv "ixemul" "${IXEMUL}" chmod a+x "${IXEMUL}/configure"