diff options
author | Jay Freeman <saurik@saurik.com> | 2009-04-11 00:29:42 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2009-04-11 00:29:42 +0000 |
commit | f520f20903e1ec962c9b63cabfe54f26780eeabb (patch) | |
tree | a422121e246cdcce704e90ec743a585b6f9c5105 /data/shell-cmds/make.sh | |
parent | 261fcc9ff5e672c3cccceccf5c7bd9c5a2c353aa (diff) |
Upgraded to coreutils 7.2.
git-svn-id: http://svn.telesphoreo.org/trunk@575 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/shell-cmds/make.sh')
-rw-r--r-- | data/shell-cmds/make.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/data/shell-cmds/make.sh b/data/shell-cmds/make.sh index 7e5d9aa8e..f8a59e1c8 100644 --- a/data/shell-cmds/make.sh +++ b/data/shell-cmds/make.sh @@ -1,7 +1,6 @@ pkg:setup mkdir -p "${PKG_DEST}/usr/bin" -for bin in killall mktemp renice script time which; do - ${PKG_TARG}-gcc -o "${bin}/${bin}" "${bin}"/*.c -D'__FBSDID(x)=' -save-temps +for bin in killall renice script time which; do + ${PKG_TARG}-gcc -O2 -mthumb -o "${bin}/${bin}" "${bin}"/*.c -D'__FBSDID(x)=' -save-temps cp -a "${bin}/${bin}" "${PKG_DEST}/usr/bin" done -pkg:bin mktemp |