* 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

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