diff options
| author | maximilian attems <maks@debian.org> | 2006-01-04 12:02:15 +0100 |
|---|---|---|
| committer | maximilian attems <maks@debian.org> | 2006-01-04 12:02:15 +0100 |
| commit | 3632a55d4a4ebc581a557600dc6e3dfad6ad5269 (patch) | |
| tree | 58a0a82e9f00d53f134e347edfe5c25f30900a03 | |
| parent | bc24e84988f7cf998091d3e2602b34523068ce81 (diff) | |
| download | initramfs-tools-3632a55d4a4ebc581a557600dc6e3dfad6ad5269.tar.gz initramfs-tools-3632a55d4a4ebc581a557600dc6e3dfad6ad5269.zip | |
small quick fix for klibc 1.1.14
/bin/sh no longer build don't complain about missing it.
| -rw-r--r-- | debian/changelog | 7 | ||||
| -rwxr-xr-x | mkinitramfs | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 2d3ae93..67d3b59 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +initramfs-tools (0.47) unstable; urgency=low + + * mkinitramfs: Don't complain about missing /bin/sh - use rm -f. + Minor cleanup for the newer packaging of klibc 1.1.14. + + -- maximilian attems <maks@sternwelten.at> Sat, 31 Dec 2005 14:17:31 +0100 + initramfs-tools (0.46) unstable; urgency=low * Don't include .bzr dirs in source upload. diff --git a/mkinitramfs b/mkinitramfs index 6855ff3..0004dbc 100755 --- a/mkinitramfs +++ b/mkinitramfs @@ -171,7 +171,7 @@ done copy_exec "${CONFDIR}/initramfs.conf" /conf # Busybox -rm ${DESTDIR}/bin/sh +rm -f ${DESTDIR}/bin/sh copy_exec ${BUSYBOXDIR}/busybox /bin/busybox ln -s ${BUSYBOXDIR}/busybox ${DESTDIR}/bin/sh |
