Add syslinux-utils to Recommends + adjust error message for isohybrid
authorMichael Prokop <mika@grml.org>
Wed, 25 Feb 2015 13:24:58 +0000 (14:24 +0100)
committerMichael Prokop <mika@grml.org>
Wed, 25 Feb 2015 13:24:58 +0000 (14:24 +0100)
isohybrid was moved from isolinux to syslinux-utils in Debian/jessie,
see #751724

debian/control
grml2iso

index e2fbeb7..3b11cd7 100644 (file)
@@ -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
index 43f57c1..d8f4be5 100755 (executable)
--- 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
 # }}}