mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-31 18:02:57 +02:00
busybox-initramfs: gcc-4.5 creates a bad busybox binary, use the
official binary instead for now... bumprev. --HG-- extra : convert_revision : 3cd96220acf4e26eb787b8958ca92ee1731cb43f
This commit is contained in:
parent
af89bc72f4
commit
304d75394f
1 changed files with 13 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
# Build template for 'busybox-initramfs'.
|
# Build template for 'busybox-initramfs'.
|
||||||
pkgname=busybox-initramfs
|
pkgname=busybox-initramfs
|
||||||
version=1.16.1
|
version=1.16.1
|
||||||
|
revision=1
|
||||||
wrksrc=busybox-$version
|
wrksrc=busybox-$version
|
||||||
distfiles="http://www.busybox.net/downloads/busybox-$version.tar.bz2"
|
distfiles="http://www.busybox.net/downloads/busybox-$version.tar.bz2"
|
||||||
build_style=gnu_makefile
|
build_style=gnu_makefile
|
||||||
|
@ -25,5 +26,17 @@ Add_dependency run glibc
|
||||||
|
|
||||||
pre_build()
|
pre_build()
|
||||||
{
|
{
|
||||||
|
# It seems that gcc-4.5 generates a bad busybox binary,
|
||||||
|
# notably sed(1) segfaults on every command. Download a
|
||||||
|
# binary from busybox.net.
|
||||||
|
${XBPS_FETCH_CMD} \
|
||||||
|
http://www.busybox.net/downloads/binaries/${version}/busybox-x86_64
|
||||||
cp -f ${FILESDIR}/dotconfig ${wrksrc}/.config
|
cp -f ${FILESDIR}/dotconfig ${wrksrc}/.config
|
||||||
}
|
}
|
||||||
|
|
||||||
|
post_install()
|
||||||
|
{
|
||||||
|
mv ${wrksrc}/busybox-x86_64 \
|
||||||
|
${DESTDIR}/usr/lib/busybox-initramfs/bin/busybox
|
||||||
|
chmod 755 ${DESTDIR}/usr/lib/busybox-initramfs/bin/busybox
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue