diff options
author | Jay Freeman <saurik@saurik.com> | 2008-01-01 16:02:31 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2008-01-01 16:02:31 +0000 |
commit | 0673535c576267adb537935c02917a526166442d (patch) | |
tree | 9ded8a50c790e805993428ea1e6cd2b32fcfe3f6 /data/file-cmds/make.sh | |
parent | db42276c66e5ecc186991f992c2f38776b4be771 (diff) |
Added a bunch more packages and fixed jni.h conflict in JamVM.
git-svn-id: http://svn.telesphoreo.org/trunk@7 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/file-cmds/make.sh')
-rw-r--r-- | data/file-cmds/make.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/data/file-cmds/make.sh b/data/file-cmds/make.sh new file mode 100644 index 000000000..be6802a41 --- /dev/null +++ b/data/file-cmds/make.sh @@ -0,0 +1,7 @@ +pkg:extract +cd * +pkg: mkdir -p /usr/bin +for bin in chflags compress ipcrm ipcs pax; do + arm-apple-darwin-gcc -o "${bin}/${bin}" "${bin}"/*.c -D'__FBSDID(x)=' -D__POSIX_C_SOURCE + pkg: cp -a "${bin}/${bin}" /usr/bin +done |