diff options
author | Jay Freeman <saurik@saurik.com> | 2008-04-10 07:42:32 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2008-04-10 07:42:32 +0000 |
commit | 5ce80493493c5d86b4a225669dddf7ce955ddbf7 (patch) | |
tree | fc4036cc417be98552838639f9401017c6fd2055 | |
parent | 0975e03ad223b918f1375310b2027ebd0c0b41a8 (diff) |
Temporarily hardcoding in a --build and replaced recursive builds.
git-svn-id: http://svn.telesphoreo.org/trunk@213 514c082c-b64e-11dc-b46d-3d985efe055d
-rwxr-xr-x | make.sh | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -17,9 +17,9 @@ if [[ ! -x ${PKG_BASE}/util/ldid || ${PKG_BASE}/util/ldid -ot ${PKG_BASE}/util/l g++ -I ~/menes -o "${PKG_BASE}"/util/ldid{,.cpp} -x c "${PKG_BASE}"/util/lookup2.c fi -#for DEP_NAME in "${PKG_DEPS[@]}"; do -# "${PKG_MAKE}" "${DEP_NAME}" -#done +for DEP_NAME in "${PKG_DEPS[@]}"; do + "${PKG_MAKE}" "${DEP_NAME}" +done export PKG_HASH=$({ "${PKG_BASE}"/util/catdir.sh -L "${PKG_DATA}" \( -name '.svn' -o -name '_*' \) -prune -o @@ -89,6 +89,7 @@ function pkg:configure() { PKG_CONFIG="$(realpath "${PKG_BASE}/util/pkg-config.sh")" \ "${PKG_CONF}" \ + --build=x86_64-unknown-linux-gnu \ --host="${PKG_TARG}" \ --enable-static=no \ --enable-shared=yes \ |