diff options
author | 2020-04-11 07:35:36 +0000 | |
---|---|---|
committer | 2020-04-11 13:08:36 +0200 | |
commit | 98da0ad82192d21ad74ae52366ea8466e2acea24 (patch) | |
tree | b8677cccd0077eaf45def79c76bec899cf71d447 /app-arch/bzip2/files/bzip2-1.0.8-saneso.patch | |
parent | dev-lang/ghc: add x86 and amd64 binaries for 8.8.3 and 8.10.1 (diff) | |
download | gentoo-98da0ad82192d21ad74ae52366ea8466e2acea24.tar.gz gentoo-98da0ad82192d21ad74ae52366ea8466e2acea24.tar.bz2 gentoo-98da0ad82192d21ad74ae52366ea8466e2acea24.zip |
app-arch/bzip2: Fix soname of library in 1.0.7 and 1.0.8.
Change soname of library from "libbz2.so.1.0" to "libbz2.so.1".
Soname "libbz2.so.1" is also used by previous version (1.0.6) and by
new build systems (both Meson and CMake) available in next version.
Closes: https://bugs.gentoo.org/695178
Signed-off-by: Arfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org>
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'app-arch/bzip2/files/bzip2-1.0.8-saneso.patch')
-rw-r--r-- | app-arch/bzip2/files/bzip2-1.0.8-saneso.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app-arch/bzip2/files/bzip2-1.0.8-saneso.patch b/app-arch/bzip2/files/bzip2-1.0.8-saneso.patch index 08430831baad..63409f5a8576 100644 --- a/app-arch/bzip2/files/bzip2-1.0.8-saneso.patch +++ b/app-arch/bzip2/files/bzip2-1.0.8-saneso.patch @@ -6,7 +6,7 @@ all: $(OBJS) - $(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.8 $(OBJS) - $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.8 -+ $(CC) $(LDFLAGS) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.8 $(OBJS) ++ $(CC) $(LDFLAGS) -shared -Wl,-soname -Wl,libbz2.so.1 -o libbz2.so.1.0.8 $(OBJS) + $(CC) $(LDFLAGS) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.8 rm -f libbz2.so.1.0 ln -s libbz2.so.1.0.8 libbz2.so.1.0 |