common/hooks: add some hooks moved from xbps-src (not yet used).
This commit is contained in:
parent
372ed2763f
commit
907f392e4d
11 changed files with 486 additions and 0 deletions
10
common/hooks/pre-configure/gnu-configure-asneeded.sh
Normal file
10
common/hooks/pre-configure/gnu-configure-asneeded.sh
Normal file
|
@ -0,0 +1,10 @@
|
|||
# This hook enables ld(1) --as-needed in gnu-configure packages.
|
||||
|
||||
hook() {
|
||||
: ${configure_script:=./configure}
|
||||
|
||||
# http://lists.gnu.org/archive/html/libtool-patches/2004-06/msg00002.html
|
||||
if [ -z "$broken_as_needed" -a "$build_style" = "gnu-configure" ]; then
|
||||
sed -i "s/^\([ \t]*tmp_sharedflag\)='-shared'/\1='-shared -Wl,--as-needed'/" ${configure_script}
|
||||
fi
|
||||
}
|
13
common/hooks/pre-configure/musl-override-configsub.sh
Normal file
13
common/hooks/pre-configure/musl-override-configsub.sh
Normal file
|
@ -0,0 +1,13 @@
|
|||
# This hook overrides config.sub for musl builds.
|
||||
|
||||
hook() {
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
*-musl);;
|
||||
*) return 0;;
|
||||
esac
|
||||
if [ "$build_style" = "gnu-configure" ]; then
|
||||
for f in $(find ${wrksrc} -type f -name *config*.sub); do
|
||||
cp -f ${XBPS_CROSSPFDIR}/config.sub ${f}
|
||||
done
|
||||
fi
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue