diff options
| author | Po Lu | 2023-01-14 09:34:53 +0800 |
|---|---|---|
| committer | Po Lu | 2023-01-14 09:34:53 +0800 |
| commit | 28a9baccd4c8e997895d3adb3cfce4a11fa29896 (patch) | |
| tree | 3b3be6902bca10759a1c12632c3fe325bfe5f0eb /java | |
| parent | a441ac5527f7323202063466422d3ee830ad4c21 (diff) | |
| download | emacs-28a9baccd4c8e997895d3adb3cfce4a11fa29896.tar.gz emacs-28a9baccd4c8e997895d3adb3cfce4a11fa29896.zip | |
Improve reliability of Android build system
* .gitignore: Add new files.
* INSTALL.android: New file.
* Makefile.in (clean_dirs): Clean xcompile as well.
* admin/merge-gnulib (avoided_flags): Import gnulib into Android
directory as well.
* doc/emacs/android.texi (Android):
* doc/emacs/emacs.texi (Top): New node `Android'.
* java/org/gnu/emacs/EmacsThread.java (run): Use right
executable name.
* lib/Makefile.in (ANDROID_CFLAGS): Use better way to refer to
/src.
(vpath): Delete ugly block of vpath statements.
(mostlyclean): Remove Makefile.android.
* lib/fpending.c (__fpending):
* lib/open.c:
* lib/unistd.c (_GL_UNISTD_INLINE): Revert changes to gnulib in
lib/.
* src/android.h:
* src/androidterm.c: Fix build.
* xcompile/Makefile.in (LIB_SRCDIR):
(LIBSRC_BINARIES, src/verbose.mk):
(PRE_BUILD_DEPS, PHONY): Use gnulib in xcompile/lib/ as opposed
to lib/.
* xcompile/README: Adjust README.
Diffstat (limited to 'java')
| -rw-r--r-- | java/org/gnu/emacs/EmacsThread.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/org/gnu/emacs/EmacsThread.java b/java/org/gnu/emacs/EmacsThread.java index e9281a13391..0882753747f 100644 --- a/java/org/gnu/emacs/EmacsThread.java +++ b/java/org/gnu/emacs/EmacsThread.java | |||
| @@ -36,7 +36,7 @@ public class EmacsThread extends Thread | |||
| 36 | { | 36 | { |
| 37 | String args[]; | 37 | String args[]; |
| 38 | 38 | ||
| 39 | args = new String[] { "android-emacs", }; | 39 | args = new String[] { "libandroid-emacs.so", }; |
| 40 | 40 | ||
| 41 | /* Run the native code now. */ | 41 | /* Run the native code now. */ |
| 42 | EmacsNative.initEmacs (args); | 42 | EmacsNative.initEmacs (args); |