diff --git a/docs/CREDITS b/docs/CREDITS index a38aaefd2..19801193b 100644 --- a/docs/CREDITS +++ b/docs/CREDITS @@ -9,6 +9,7 @@ Patches (alphabetical order): * Chris Lamb * Cyril Brulebois * David Madore + * Erwan Le Gall * Fathi Boudra * Franklin Piat * Frederic Lehobey diff --git a/helpers/lh_chroot_local-packages b/helpers/lh_chroot_local-packages index 484168c4f..953bef784 100755 --- a/helpers/lh_chroot_local-packages +++ b/helpers/lh_chroot_local-packages @@ -60,7 +60,13 @@ then # Installing packages Chroot "find /root -name *.deb" > chroot/root/local-packages - Chroot "xargs --arg-file=/root/local-packages dpkg -i" || true + + if [ -s chroot/root/local-packages ] + then + Chroot "xargs --arg-file=/root/local-packages dpkg -i" || true + else + Echo_warning "Local packages must be named with suffix '_all.deb' or '_\$architecture.deb'." + fi # Cleaning dependencies Apt install -f