diff options
author | Jay Freeman <saurik@saurik.com> | 2009-08-15 08:51:37 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2009-08-15 08:51:37 +0000 |
commit | eac6f2954bb0aa5f7c0d2600e5ddf9e02b463319 (patch) | |
tree | 0e269ba1e0e436793b0b4d82cd368af6740eee70 /data/adv-cmds/make.sh | |
parent | a45acb90b703d27f210a735133e1c27eec40da53 (diff) |
Various updates I forgot to commit.
git-svn-id: http://svn.telesphoreo.org/trunk@666 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/adv-cmds/make.sh')
-rw-r--r-- | data/adv-cmds/make.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/data/adv-cmds/make.sh b/data/adv-cmds/make.sh index eb439df86..307777e3a 100644 --- a/data/adv-cmds/make.sh +++ b/data/adv-cmds/make.sh @@ -1,10 +1,12 @@ pkg:setup +"${PKG_TARG}-gcc" -O2 -mthumb -o tabs tabs.tproj/*.c -lncurses +"${PKG_TARG}-g++" -O2 -mthumb -o locale/locale locale/*.cc for tproj in finger fingerd last lsvfs md ps; do - "${PKG_TARG}-gcc" -o "${tproj}" "${tproj}.tproj"/*.c -D'__FBSDID(x)=' + echo "${tproj}" + "${PKG_TARG}-gcc" -O2 -mthumb -o "${tproj}" "${tproj}.tproj"/*.c -D'__FBSDID(x)=' done -"${PKG_TARG}-gcc" -o tabs tabs.tproj/*.c -lncurses pkg: mkdir -p /bin /usr/bin /usr/libexec pkg: cp -a ps /bin -pkg: cp -a finger last lsvfs md tabs /usr/bin +pkg: cp -a finger last locale/locale lsvfs md tabs /usr/bin pkg: cp -a fingerd /usr/libexec ldid -S"${PKG_DATA}/ps.xml" "${PKG_DEST}/bin/ps" |