android/run-javac.sh: remove unnecessary `realpath` call

This commit is contained in:
Max Kellermann 2023-12-22 16:35:05 +01:00
parent ee5c471280
commit 1e732f9b9b
1 changed files with 1 additions and 2 deletions

View File

@ -3,9 +3,8 @@
JAVAC=$1 JAVAC=$1
CLASSPATH=$2 CLASSPATH=$2
DIRNAME=$3 DIRNAME=$3
REALDIR=`realpath "$DIRNAME"`
GENINCLUDE="$REALDIR/include" GENINCLUDE="$DIRNAME/include"
mkdir -p "$GENINCLUDE" mkdir -p "$GENINCLUDE"
"$JAVAC" -source 1.8 -target 1.8 -Xlint:-options \ "$JAVAC" -source 1.8 -target 1.8 -Xlint:-options \