From 6e940c2c85759ac197c29d335a929dd06822a9df 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, 6 Feb 2016 15:11:56 +0100 Subject: - 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). --- 100.perk.build | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to '100.perk.build') diff --git a/100.perk.build b/100.perk.build index 8ad9c101..f966813c 100644 --- a/100.perk.build +++ b/100.perk.build @@ -1,7 +1,7 @@ if is_build_script_done finished; then exit 212; else - fetch_git perk "${GITROOT}/perk"; + fetch_git perk ${GITROOT}/perk; fi; if ! is_build_script_done configured1; then rm_if_exists -m -c perk-build; @@ -15,23 +15,22 @@ if ! is_build_script_done built1; then set_build_script_done built1 -installed1; fi; if ! is_build_script_done installed1; then - make DESTDIR="${PREFIX}" install; + make DESTDIR=${PREFIX} install; set_build_script_done installed1 -configured2; fi; if ! is_build_script_done configured2; then - rm_if_exists -m "../perk-build-${TARGET}"; - cd "../perk-build-${TARGET}"; - ../perk/configure --target="${TARGET}"; + rm_if_exists -m -c ../perk-build-${TARGET}; + ../perk/configure --target=${TARGET}; set_build_script_done configured2 -built2; else - cd "../perk-build-${TARGET}"; + cd ../perk-build-${TARGET}; fi; if ! is_build_script_done built2; then make; set_build_script_done built2 -installed2; fi; if ! is_build_script_done installed2; then - make DESTDIR="${PREFIX_NATIVE}" install; + make DESTDIR=${PREFIX_NATIVE} install; set_build_script_done installed2 finished; fi; -- cgit v1.2.3