diff options
author | Lucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de> | 2016-07-10 16:33:28 +0000 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de> | 2016-07-10 16:54:54 +0000 |
commit | 990c25dd89aab1638ac39e4ad1962d63fdd63e87 (patch) | |
tree | 03c3528f2900579ebc6daabdc8862db88fcc234f | |
parent | e56691106cb6e598140019341904570f25b24d40 (diff) | |
download | midipix_build-990c25dd89aab1638ac39e4ad1962d63fdd63e87.tar.bz2 midipix_build-990c25dd89aab1638ac39e4ad1962d63fdd63e87.tar.xz |
Followup to <806c982e1dd9ef30ae17cd179476802015d1cd00>.
-rw-r--r-- | 009.gcc.full.build | 2 | ||||
-rw-r--r-- | 100.perk.native.build | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/009.gcc.full.build b/009.gcc.full.build index fe469ff3..3c9633e0 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 1bf92d37..b0a47150 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; |