common/hooks: add some hooks moved from xbps-src (not yet used).
This commit is contained in:
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
|
||||
}
|
||||
Reference in New Issue
Block a user