2.4.3
minecraft-pi-reborn/pipeline/head This commit looks good Details

This commit is contained in:
TheBrokenRail 2022-08-01 18:41:08 -04:00
parent 8dd562a20f
commit 00d6ee4f9a
4 changed files with 7 additions and 5 deletions

View File

@ -1 +1 @@
2.4.2
2.4.3

View File

@ -1,5 +1,8 @@
# Changelog
**2.4.3**
* Fix Signs With CP-437
**2.4.2**
* Fix Picking Up Lava
* Fix Wayland App ID

Binary file not shown.

Before

Width:  |  Height:  |  Size: 155 KiB

After

Width:  |  Height:  |  Size: 155 KiB

View File

@ -53,7 +53,7 @@ static void load(char **ld_preload, char *folder) {
string_append(ld_preload, "%s%s", *ld_preload == NULL ? "" : ":", name);
} else if (result == -1 && errno != 0) {
// Fail
WARN("Unable To Acesss: %s: %s", name, strerror(errno));
WARN("Unable To Access: %s: %s", name, strerror(errno));
errno = 0;
}
}
@ -146,7 +146,7 @@ void pre_bootstrap(int argc, char *argv[]) {
// Configure PATH
{
// Add Library Directory
char *new_path;
char *new_path = NULL;
safe_asprintf(&new_path, "%s/bin", binary_directory);
// Add Existing PATH
{
@ -332,7 +332,6 @@ void bootstrap(int argc, char *argv[]) {
// Library Search Path For ARM Components
{
// Add ARM Library Directory
// (This Overrides LD_LIBRARY_PATH Using ld.so's --library-path Option)
safe_asprintf(&mcpi_ld_path, "%s/lib/arm", binary_directory);
// Add ARM Sysroot Libraries (Ensure Priority) (Ignore On Actual ARM System)
@ -344,7 +343,7 @@ void bootstrap(int argc, char *argv[]) {
{
char *value = getenv("LD_LIBRARY_PATH");
if (value != NULL && strlen(value) > 0) {
string_append(&transitive_ld_path, ":%s", value);
string_append(&mcpi_ld_path, ":%s", value);
}
}