diff options
| author | Po Lu | 2023-08-24 12:41:15 +0800 |
|---|---|---|
| committer | Po Lu | 2023-08-24 12:41:54 +0800 |
| commit | 32fe187bdf16ebc81a09592be0af75dc2227cded (patch) | |
| tree | 8fb6d5a8164f76d52b085d4aba0da1366960da3d /java | |
| parent | 7b0f24ab1f9770408a08181ab9f8ac2b43e5ab9b (diff) | |
| download | emacs-32fe187bdf16ebc81a09592be0af75dc2227cded.tar.gz emacs-32fe187bdf16ebc81a09592be0af75dc2227cded.zip | |
Install rcs2log within Emacs packages for Android
* doc/emacs/android.texi (Android Environment): Mention the
`rcs2log' program name variable. Also refine the wording of the
paragraph describing bundled programs a bit.
* doc/lispref/processes.texi (Subprocess Creation): Mention
`rcs2log' and `rcs2log-program-name'. Correct typos and
spelling mistakes within the variable index.
* etc/NEWS: Amend the announcement of *-program-name to also
cite rcs2log.
* java/Makefile.in (install_temp): Copy rcs2log to
lib/*/librcs2log.so after minor revisions to change the
interpreter name.
* lisp/vc/vc-rcs.el (vc-rcs-rcs2log-program): Ground the program
name upon `rcs2log-program-name'.
* src/callproc.c (syms_of_callproc) <Vrcs2log_program_name>: New
defvar. Define to `librcs2log.so' under Android, `rcs2log'
elsewhere.
Diffstat (limited to 'java')
| -rw-r--r-- | java/Makefile.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/java/Makefile.in b/java/Makefile.in index 804d4669c7a..87683f12544 100644 --- a/java/Makefile.in +++ b/java/Makefile.in | |||
| @@ -227,6 +227,13 @@ install_temp: $(CROSS_BINS) $(CROSS_LIBS) $(RESOURCE_FILES) | |||
| 227 | cp -f $$file install_temp/lib/$(ANDROID_ABI); \ | 227 | cp -f $$file install_temp/lib/$(ANDROID_ABI); \ |
| 228 | fi \ | 228 | fi \ |
| 229 | done | 229 | done |
| 230 | # Next, produce a version of rcs2log befitting Android's naming | ||
| 231 | # conventions and shell interpreter location. | ||
| 232 | $(AM_V_at) \ | ||
| 233 | sed 's|/bin/sh|/system/bin/sh|' \ | ||
| 234 | $(top_srcdir)/lib-src/rcs2log > \ | ||
| 235 | install_temp/lib/$(ANDROID_ABI)/librcs2log.so | ||
| 236 | $(AM_V_at) chmod +x install_temp/lib/$(ANDROID_ABI)/librcs2log.so | ||
| 230 | ifneq ($(NDK_BUILD_SHARED),) | 237 | ifneq ($(NDK_BUILD_SHARED),) |
| 231 | $(AM_V_SILENT) cp -f $(NDK_BUILD_SHARED) \ | 238 | $(AM_V_SILENT) cp -f $(NDK_BUILD_SHARED) \ |
| 232 | install_temp/lib/$(ANDROID_ABI) | 239 | install_temp/lib/$(ANDROID_ABI) |