diff options
author | Bdale Garbee <bdale@gag.com> | 2010-08-27 13:12:46 -0600 |
---|---|---|
committer | Bdale Garbee <bdale@gag.com> | 2010-08-27 13:12:46 -0600 |
commit | 0bd4cc03b3bf23aa32b5ce1921078021d1d8a9c6 (patch) | |
tree | 7bd837dfee0332372c74c16ca49179a82d775850 | |
parent | 99c1d9b4ef10ec4ebbee058ce0bb38c954a0a3a6 (diff) |
fix path to installed shared library
-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 22752d5d..770abcf3 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 /usr/share/java/altosui.jar" >> $@ + echo "exec java -Djava.library.path=/usr/lib/altos -jar /usr/share/java/altosui.jar" >> $@ chmod +x ./altosui install: altosui.jar altosui |