mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-10 09:03:50 +02:00
13 lines
290 B
Bash
13 lines
290 B
Bash
# 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
|
|
}
|