blob: 132f1c9bd687523b16ca6b1021c63fb9028599d6 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001From 7f2b8a1ab4fa1475eeeddfb84eb5b92594bfce43 Mon Sep 17 00:00:00 2001
2From: Eneas U de Queiroz <cotequeiroz@gmail.com>
3Date: Tue, 20 Jul 2021 16:54:12 -0300
4Subject: openwrt: strip unsave directories from relink command
5
6strip unsave directories from relink command, nuke every -L that looks
7like /usr/lib or /lib
8
9This was originally commited to openwrt by Jo-Philipp Wich
10<jow@openwrt.org>.
11
12Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
13
14--- a/build-aux/ltmain.in
15+++ b/build-aux/ltmain.in
16@@ -2400,6 +2400,9 @@ func_mode_install ()
17 relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"`
18 fi
19
20+ relink_command=`$ECHO "$relink_command" | $SED "s%-L[[:space:]]*/lib[^[:space:]]*%%"`
21+ relink_command=`$ECHO "$relink_command" | $SED "s%-L[[:space:]]*/usr/lib[^[:space:]]*%%"`
22+
23 func_warning "relinking '$file'"
24 func_show_eval "$relink_command" \
25 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"'