hc
2023-05-26 a23f51ed7a39e452c1037343a84d7db1ca2c5bd7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
From c9e263a7add76df1ed92e879d964264067c0f6e8 Mon Sep 17 00:00:00 2001
From: Patrick McCarty <patrick.mccarty@intel.com>
Date: Mon, 26 Jul 2021 11:38:43 -0700
Subject: [PATCH] Avoid use of INSTALL_DIR for symlink targets
 
In case INSTALL_DIR is overridden with a staged install location, using
INSTALL_DIR for the symlink target path prefix will yield an incorrect location
for the final installation.
 
Because the symlink itself is already installed to INSTALL_DIR, simply removing
the INSTALL_DIR prefix suffices as a fix.
 
Note that using $DESTDIR/$INSTALL_DIR where appropriate can avoid this type of
issue, but that can be considered a future enhancement.
 
Upstream-Status: Backport
Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 squashfs-tools/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 
diff --git a/squashfs-tools/Makefile b/squashfs-tools/Makefile
index 5795d0d..998c5fd 100755
--- a/Makefile
+++ b/Makefile
@@ -406,5 +406,5 @@ install: mksquashfs unsquashfs
     mkdir -p $(INSTALL_DIR)
     cp mksquashfs $(INSTALL_DIR)
     cp unsquashfs $(INSTALL_DIR)
-    ln -fs $(INSTALL_DIR)/unsquashfs $(INSTALL_DIR)/sqfscat
-    ln -fs $(INSTALL_DIR)/mksquashfs $(INSTALL_DIR)/sqfstar
+    ln -fs unsquashfs $(INSTALL_DIR)/sqfscat
+    ln -fs mksquashfs $(INSTALL_DIR)/sqfstar