Fix aidl option in build_without_gradle.sh
Debian's aidl complains about the missing path for -o option. Signed-off-by: Romain Vimont <rom@rom1v.com>
This commit is contained in:
parent
40c3c57613
commit
7d7f3daff2
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ EOF
|
||||||
|
|
||||||
echo "Generating java from aidl..."
|
echo "Generating java from aidl..."
|
||||||
cd "$SERVER_DIR/src/main/aidl"
|
cd "$SERVER_DIR/src/main/aidl"
|
||||||
"$ANDROID_HOME/build-tools/$BUILD_TOOLS/aidl" -o "$CLASSES_DIR" \
|
"$ANDROID_HOME/build-tools/$BUILD_TOOLS/aidl" -o"$CLASSES_DIR" \
|
||||||
android/view/IRotationWatcher.aidl
|
android/view/IRotationWatcher.aidl
|
||||||
|
|
||||||
echo "Compiling java sources..."
|
echo "Compiling java sources..."
|
||||||
|
|
Loading…
Reference in a new issue