release-1.10release-1.8release-1.9
Last change
on this file since e6d7e4e was
b14f8cb,
checked in by David Benjamin <davidben@mit.edu>, 13 years ago
|
Make the barnowl shell script work in Solaris
Apparently their shell is lame. In case someone wanted to run this thing
on Solaris or something absurd like that.
|
-
Property mode set to
100755
|
File size:
404 bytes
|
Line | |
---|
1 | #!/bin/sh |
---|
2 | # This is a wrapper script to point BARNOWL_DATA_DIR at the source dir |
---|
3 | # if we're running from a build tree. barnowl.bin is the actual built |
---|
4 | # binary. |
---|
5 | |
---|
6 | SRCDIR=`dirname "${0}"` |
---|
7 | EXE="$0.bin" |
---|
8 | |
---|
9 | if test ! -x "$EXE"; then |
---|
10 | echo "Cannot find barnowl.bin" >&2 |
---|
11 | exit 1 |
---|
12 | fi |
---|
13 | |
---|
14 | BARNOWL_DATA_DIR="$SRCDIR/perl/" |
---|
15 | BARNOWL_BIN_DIR="$SRCDIR/" |
---|
16 | export BARNOWL_DATA_DIR |
---|
17 | export BARNOWL_BIN_DIR |
---|
18 | exec "$EXE" "$@" |
---|
Note: See
TracBrowser
for help on using the repository browser.