File: 0009-Fix-link-target.patch

package info (click to toggle)
unrar-nonfree 1%3A6.2.6-1%2Bdeb12u1
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm
  • size: 1,976 kB
  • sloc: cpp: 28,439; makefile: 712; sh: 11
file content (22 lines) | stat: -rw-r--r-- 659 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: YOKOTA Hiroshi <yokota.hgml@gmail.com>
Date: Sat, 10 Oct 2020 12:13:37 +0900
Subject: Fix link target

Forwarded: not-needed
---
 makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/makefile b/makefile
index 2400d8f..a0d780e 100644
--- a/makefile
+++ b/makefile
@@ -164,7 +164,7 @@ lib:	$(OBJECTS) $(LIB_OBJ)
 	@rm -f libunrar.so.5.0 libunrar.so.5 libunrar.so
 	$(LINK) -Wl,-soname,libunrar.so.5 -shared -o libunrar.so.5.0 $(LDFLAGS) $(OBJECTS) $(LIB_OBJ)
 	ln -s libunrar.so.5.0 libunrar.so.5
-	ln -s libunrar.so.5.0 libunrar.so
+	ln -s libunrar.so.5   libunrar.so
 
 static-lib: WHAT=RARDLL
 static-lib: $(OBJECTS) $(LIB_OBJ)