summaryrefslogtreecommitdiffhomepage
path: root/100.perk.native.build
diff options
context:
space:
mode:
Diffstat (limited to '100.perk.native.build')
-rw-r--r--100.perk.native.build6
1 files changed, 3 insertions, 3 deletions
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;