diff options
author | Jay Freeman <saurik@saurik.com> | 2008-05-06 09:31:02 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2008-05-06 09:31:02 +0000 |
commit | ddfd304a75632fbb7d8da8c5802675ea9e8bac8b (patch) | |
tree | 2c7aa6613528e27153a9241aaddab5d614f4502f | |
parent | 8bb3b7d785405c244049c17d69985dd6ace9e76d (diff) |
Added prefix munging.
git-svn-id: http://svn.telesphoreo.org/trunk@259 514c082c-b64e-11dc-b46d-3d985efe055d
-rwxr-xr-x | make.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -50,6 +50,7 @@ function pkg:patch() { pkg:libtool_ ltmain.sh for diff in "${PKG_DATA}"/*.diff; do + echo "patching with ${diff}..." patch -p1 <"${diff}" done } @@ -108,7 +109,7 @@ function pkg:configure() { --host="${PKG_TARG}" \ --enable-static=no \ --enable-shared=yes \ - --prefix=/usr \ + --prefix=$(cat "${PKG_BASE}/arch/${PKG_ARCH}/prefix") \ --localstatedir="/var/cache/${PKG_NAME}" \ "$@" } |