summaryrefslogtreecommitdiff
path: root/exec.sh
diff options
context:
space:
mode:
authorJay Freeman <saurik@saurik.com>2009-08-09 20:18:12 +0000
committerJay Freeman <saurik@saurik.com>2009-08-09 20:18:12 +0000
commitb88784ad2f85711be2069d5f348e6404b37ecb94 (patch)
treee4d23e6c655e3df35d86a1719f0d173e7c7bb3f5 /exec.sh
parenteae20da4e7f06ab8c5277c09db55b51bbbed3242 (diff)
Added a modified version of the fakeroot2 patch from jlanger on #188.
git-svn-id: http://svn.telesphoreo.org/trunk@654 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'exec.sh')
-rwxr-xr-xexec.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/exec.sh b/exec.sh
index cbaecaa23..3810f8e65 100755
--- a/exec.sh
+++ b/exec.sh
@@ -16,6 +16,12 @@ PKG_INCL=
PKG_LIBS=
PKG_PKGS=
+if [[ -n ${FAKEROOTKEY} ]]; then
+ for i in "$(dirname $(which fakeroot))"/../lib{64,32,}/libfakeroot; do
+ PKG_LIBS=$i:${PKG_LIBS}
+ done
+fi
+
case "${PKG_NAME}" in
(-) deps=();;
(:*) deps=(${PKG_NAME//:/ });;