From 8512bcaecbb843b091dcec74babdffd3b1559125 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Fri, 29 Aug 2025 19:04:52 +0200 Subject: [PATCH] feat: use emacs android prefix for packages as well as termux Since I cannot get termux working now, I have compiled packages from termux with this pewfix for emacs... --- lisp/android-setup.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/android-setup.el b/lisp/android-setup.el index 1444950ad4e4d2b1d3b1547c49875cc86fab121d..c35239361de568bae42d9e0dc3b04aa747e05770 100644 --- a/lisp/android-setup.el +++ b/lisp/android-setup.el @@ -1,7 +1,11 @@ ;; Android early setup (when (eq system-type 'android) - (setenv "PATH" (format "%s:%s" "/data/data/com.termux/files/usr/bin" (getenv "PATH"))) + (setenv "PATH" (format "%s:%s:%s" + "/data/data/org.gnu.emacs/files/usr/bin" + "/data/data/com.termux/files/usr/bin" + (getenv "PATH"))) + (push "/data/data/org.gnu.emacs/files/usr/bin" exec-path) (push "/data/data/com.termux/files/usr/bin" exec-path) (customize-set-variable 'touch-screen-display-keyboard t)