aports/community/helix/runtime-dir-fhs-location.patch
2022-04-05 00:49:40 +02:00

37 lines
1.3 KiB
Diff

From: Jakub Jirutka <jakub@jirutka.cz>
Date: Wed, 02 Feb 2022 00:55:24 +0100
Date: Mon, 04 Apr 2022 02:48:13 +0200
Subject: [PATCH] Change runtime directory location to follow FHS
Helix allows to specify the location of the runtime directory (which
contains arch-independent modules) via environment variable
`HELIX_RUNTIME`. Using this would require installing a wrapper script
to set this variable prior executing `hx`.
If this environment variable is not set, Helix fallbacks to directory
`./runtime` relative to the directory of the `hx` executable. This is not
suitable for Alpine (FHS).
This patch changes the fallback to `/usr/share/helix/runtime`.
--- a/helix-loader/src/lib.rs
+++ b/helix-loader/src/lib.rs
@@ -21,11 +21,13 @@
return std::path::PathBuf::from(dir).parent().unwrap().join(RT_DIR);
}
+ // XXX-Patched
+ return std::path::PathBuf::from("/usr/share/helix").join(RT_DIR);
// fallback to location of the executable being run
- std::env::current_exe()
- .ok()
- .and_then(|path| path.parent().map(|path| path.to_path_buf().join(RT_DIR)))
- .unwrap()
+ //std::env::current_exe()
+ // .ok()
+ // .and_then(|path| path.parent().map(|path| path.to_path_buf().join(RT_DIR)))
+ // .unwrap()
}
pub fn config_dir() -> std::path::PathBuf {