mirror of
https://github.com/xHyroM/void-packages.git
synced 2024-11-10 08:58:07 +01:00
14 lines
401 B
Bash
14 lines
401 B
Bash
|
# This hook enables ld(1) --as-needed in gnu-configure packages.
|
||
|
|
||
|
hook() {
|
||
|
local conf_script=${configure_script:-./configure}
|
||
|
|
||
|
if [ ! -f "${conf_script}" ]; then
|
||
|
return 0
|
||
|
fi
|
||
|
# http://lists.gnu.org/archive/html/libtool-patches/2004-06/msg00002.html
|
||
|
if [ "$build_style" = "gnu-configure" ]; then
|
||
|
sed -i "s/^\([ \t]*tmp_sharedflag\)='-shared'/\1='-shared -Wl,--as-needed'/" ${conf_script}
|
||
|
fi
|
||
|
}
|