From 990c25dd89aab1638ac39e4ad1962d63fdd63e87 Mon Sep 17 00:00:00 2001 From: Lucio Andrés Illanes Albornoz (arab, vxp) Date: Jul 10 2016 16:54:54 +0000 Subject: Followup to <806c982e1dd9ef30ae17cd179476802015d1cd00>. --- diff --git a/009.gcc.full.build b/009.gcc.full.build index fe469ff..3c9633e 100644 --- a/009.gcc.full.build +++ b/009.gcc.full.build @@ -5,7 +5,7 @@ # Order: stage1, runtime, full, native if [ "${3}" = runtime ]\ -|| [ "${3}" = libstdc++-v3 ]; then +|| [ "${3}" = libstdc++-v3 ]\ || [ "${3}" = full ]; then set_build_dir cbb-gcc-${PKG_GCC_VERSION} cross; cd ${PKG_BUILD_DIR}; diff --git a/100.perk.native.build b/100.perk.native.build index 1bf92d3..b0a4715 100644 --- a/100.perk.native.build +++ b/100.perk.native.build @@ -4,7 +4,7 @@ if ! is_build_script_done fetch; then fetch_git perk ${GITROOT}/perk; - set_build_script_done fetch configure; + set_build_script_done fetch -configure; fi; if [ "${3}" = native ]; then set_build_dir ${2} native; @@ -30,11 +30,11 @@ if [ "${3}" = native ]; then elif [ "${3}" = cross ]; then set_build_dir ${2} cross; if ! is_build_script_done configure; then - rm_if_exists -m -c ../${PKG_BUILD_DIR}; + rm_if_exists -m -c ${PKG_BUILD_DIR}; ../perk/configure --prefix=/usr --target=${TARGET}; set_build_script_done configure clean -build; else - cd ../${PKG_BUILD_DIR}; + cd ${PKG_BUILD_DIR}; fi; if ! is_build_script_done clean; then make ${MAKEFLAGS} clean;