diff options
-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; |