diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2023-11-30 11:44:01 +0100 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2023-11-30 14:18:22 +0100 |
commit | 266a0e72e8382f0b72fa7b1127ce8712103aa562 (patch) | |
tree | 108c958f84e8457b90b4f319cb2bc7003b349981 /android | |
parent | b4ff86cf73d6e488e96387cc726934ac892901be (diff) |
android: Remove 'build' dir in 'clean' make target
Add the build dir (`android/source/build`) to the
directories to be removed when cleaning.
Previously, this was't cleaned, which could be seen
e.g. by the fact that a fresh build would result in
this warning being shown
> Task :compileStrippedUIEditingDebugJavaWithJavac
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
while a
make android.clean
make android
after a full build wouldn't.
Change-Id: I00a4f8b1fda9fbefb3b8f806b1997eceded117fa
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160145
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'android')
-rw-r--r-- | android/source/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/source/Makefile b/android/source/Makefile index 1dc1b42d187b..d934994001d9 100644 --- a/android/source/Makefile +++ b/android/source/Makefile @@ -23,7 +23,7 @@ uninstall: $(ANDROID_SDK_DIR)/platform-tools/adb uninstall $(ANDROID_PACKAGE_NAME) clean: - rm -rf assets assets_fullUI assets_strippedUI jniLibs jniLibs_debug $(OBJLOCAL) + rm -rf assets assets_fullUI assets_strippedUI build jniLibs jniLibs_debug $(OBJLOCAL) rm -f native-code.cxx rm -f liboSettings.gradle |