]>
Commit | Line | Data |
---|---|---|
6ecd355e DE |
1 | #! /bin/sh |
2 | if test "x$1" '!=' "xrcu"; then | |
3 | echo "$0: this isn't really ar. Only rcu is supported" >&2 | |
4 | exit 1 | |
5 | fi | |
6 | if test "x$2" == "x"; then | |
7 | echo "$0: no archive file specified" >&2 | |
8 | exit 1 | |
9 | fi | |
10 | if test "x$3" == "x"; then | |
11 | echo "$0: no archive members specified" >&2 | |
12 | exit 1 | |
13 | fi | |
14 | outputfile="$2" | |
15 | shift | |
16 | shift | |
17 | /Users/dfe/bin/mw8.3/realmw/mwld -xm l -o "$outputfile" "$@" |