From: Michael Prokop Date: Wed, 25 Feb 2015 13:24:58 +0000 (+0100) Subject: Add syslinux-utils to Recommends + adjust error message for isohybrid X-Git-Tag: v0.14.11~4 X-Git-Url: http://git.grml.org/?p=grml2usb.git;a=commitdiff_plain;h=371c60ef53b067bb6fcada208a3efbc72050033c;hp=7a6e10df1c335b447ed9e60e2cc1226a42b5f5c8 Add syslinux-utils to Recommends + adjust error message for isohybrid isohybrid was moved from isolinux to syslinux-utils in Debian/jessie, see #751724 --- diff --git a/debian/control b/debian/control index e2fbeb7..3b11cd7 100644 --- a/debian/control +++ b/debian/control @@ -26,6 +26,7 @@ Depends: mtools, ${misc:Depends}, ${shlibs:Depends} Recommends: syslinux, + syslinux-utils, xorriso | genisoimage Description: install Grml system / ISO to usb device This script installs a Grml ISO to an USB device to be able diff --git a/grml2iso b/grml2iso index 43f57c1..d8f4be5 100755 --- a/grml2iso +++ b/grml2iso @@ -37,7 +37,7 @@ else fi if ! which isohybrid >/dev/null 2>&1 ; then - echo "Error: isohybrid executable not found (install syslinux/isolinux?)." >&2 + echo "Error: isohybrid executable not found (install syslinux/isolinux/syslinux-utils?)." >&2 exit 1 fi # }}}