diff options
author | Bdale Garbee <bdale@gag.com> | 2010-08-27 12:04:13 -0600 |
---|---|---|
committer | Bdale Garbee <bdale@gag.com> | 2010-08-27 12:04:13 -0600 |
commit | c280071b7db4e9a7af31dc5740eb8d27f137950e (patch) | |
tree | 693ffca353149dcba8e09421e63c2ef3a9b8df10 | |
parent | 72a18502e40f55cbba6418dc94315517881cd411 (diff) |
fix up the wrapper's path to the jar file
-rw-r--r-- | ao-tools/altosui/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ao-tools/altosui/Makefile b/ao-tools/altosui/Makefile index 258a334f..73bc230d 100644 --- a/ao-tools/altosui/Makefile +++ b/ao-tools/altosui/Makefile @@ -96,7 +96,7 @@ endif ifeq ($(OS),Linux) altosui: echo "#!/bin/sh" > $@ - echo "exec java -Djava.library.path=/usr/lib/altos/libaltos -jar altosui.jar" >> $@ + echo "exec java -Djava.library.path=/usr/lib/altos/libaltos -jar /usr/share/java/altosui.jar" >> $@ chmod +x ./altosui install: altosui.jar altosui |