Skip to content

Commit

Permalink
commit for 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
trestoa committed Sep 8, 2013
1 parent ac17d2f commit 9d1d3a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions install/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -235,4 +235,9 @@ if [[ $? != 0 ]]; then
echo "[ERROR] install_library returned a non zero status code"
exit
fi
finish_installation
if [[ $? != 0 ]]; then
echo "[ERROR] finsh_installation returned a non zero status code"
exit
fi
echo "[INSTALL] LinkJVM java environment installed!"
2 changes: 1 addition & 1 deletion java-environment/javac/javac.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include <string.h>

int main(int argc, char *argv[]){
char command[2048] = "java -jar /usr/local/LinkJVM/lib/javac/ecj-3.7.jar -7";
char command[2048] = "java -jar /usr/local/LinkJVM/lib/javac/ecj-3.7.jar -7 ";
int i = 1;
for(i; i < argc; i++){
strcat(command, argv[i]);
Expand Down

0 comments on commit 9d1d3a0

Please sign in to comment.