* util/grub-mkrescue.in: Fix handling xorriso option.

This commit is contained in:
Philipp Matthias Hahn 2011-11-03 16:49:02 +01:00 committed by Vladimir 'phcoder' Serbinenko
parent 1e51cabd7b
commit 182c872a7b
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2011-11-03 Philipp Matthias Hahn <pmhahn@debian.org>
* util/grub-mkrescue.in: Fix handling xorriso option.
2011-11-03 Vladimir Serbinenko <phcoder@gmail.com> 2011-11-03 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/gettext/gettext.c (grub_gettext_init_ext): Exit if local is * grub-core/gettext/gettext.c (grub_gettext_init_ext): Exit if local is

View file

@ -129,7 +129,7 @@ do
--xorriso) --xorriso)
xorriso=`argument $option "$@"`; shift ;; xorriso=`argument $option "$@"`; shift ;;
--xorriso=*) --xorriso=*)
xorriso=`echo "${option}/" | sed 's/--xorriso=//'` ;; xorriso=`echo "${option}" | sed 's/--xorriso=//'` ;;
*) *)
source="${source} ${option} $@"; break ;; source="${source} ${option} $@"; break ;;