diff options
author | Jay Freeman <saurik@saurik.com> | 2008-01-27 23:41:13 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2008-01-27 23:41:13 +0000 |
commit | e8b4ea7e81b21161f8e9731194d1bc24d480ad08 (patch) | |
tree | 0ffbb22618ab2dd4a9b086a989c86e2920937c8c /data/adv-cmds | |
parent | 01dc6ba63ced4cdd8485f7d3a1f4ef18ac7f6473 (diff) |
Compile more of adv-cmds (finger, fingerd, last, md).
git-svn-id: http://svn.telesphoreo.org/trunk@42 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/adv-cmds')
-rw-r--r-- | data/adv-cmds/make.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/data/adv-cmds/make.sh b/data/adv-cmds/make.sh index 1322591b9..ae4cb5506 100644 --- a/data/adv-cmds/make.sh +++ b/data/adv-cmds/make.sh @@ -1,9 +1,10 @@ pkg:extract cd * -for tproj in lsvfs ps; do +for tproj in finger fingerd last lsvfs md ps; do arm-apple-darwin-gcc -o "${tproj}" "${tproj}.tproj"/*.c -D'__FBSDID(x)=' arm-apple-darwin-strip "${tproj}" done -pkg: mkdir -p /bin /usr/bin +pkg: mkdir -p /bin /usr/bin /usr/libexec pkg: cp -a ps /bin -pkg: cp -a lsvfs /usr/bin +pkg: cp -a finger last lsvfs md /usr/bin +pkg: cp -a fingerd /usr/libexec |