intercept: Help Fedora by redirecting bzip2 automatically

Fedora doesn't seem to have `libbbz2.so.1` so let's intercept requests for
this guy and send them to the proper `libbz2.so.1.0.6`.

This fixes #38.

Signed-off-by: Ikey Doherty <ikey@solus-project.com>
This commit is contained in:
Ikey Doherty
2017-11-13 18:44:32 +00:00
parent 80603598af
commit 287781356c
+4
View File
@@ -259,6 +259,8 @@ static const char *vendor_transmute_source[] = {
/* invalid curls */
"libcurl-gnutls.so.3",
"libcurl.so.3",
"libbz2.so.1",
};
/**
@@ -293,6 +295,8 @@ static const char *vendor_transmute_target[] = {
/* invalid curls */
"libcurl-gnutls.so.4",
"libcurl.so.4",
"libbz2.so.1.0.6",
};
/**