diff options
author | Jay Freeman <saurik@saurik.com> | 2008-02-25 10:36:07 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2008-02-25 10:36:07 +0000 |
commit | ef1e884f98c5a826ac36c4d6a24938f448c539df (patch) | |
tree | 62bbd81ddfdd7c6d5264d8ef415d262b83c2bf19 /make.sh | |
parent | 31487aa2ee9c1a1f1804ff760af5227f5fd78812 (diff) |
Temporary construction needs to be done using God Mode, and cp -T doesn't handle symlinks correctly (so let's use tar).
git-svn-id: http://svn.telesphoreo.org/trunk@98 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'make.sh')
-rwxr-xr-x | make.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -148,7 +148,7 @@ function pkg:mkdir() { cd "${PKG_WORK}" . "${PKG_DATA}/make.sh" -cp -Ta "${PKG_DEST}" "${PKG_ROOT}" +tar -zcf- -C "${PKG_DEST}" . | tar -zxf- -C "${PKG_ROOT}" function rmdir_() { if [[ -d "$1" ]]; then |