* util/grub-install.in: Make the error message if $source_dir

doesn't exist more useful.
This commit is contained in:
Colin Watson 2012-09-24 18:50:35 +01:00
parent 794c8c3375
commit 473959f052
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2012-09-24 Colin Watson <cjwatson@ubuntu.com>
* util/grub-install.in: Make the error message if $source_dir
doesn't exist more useful.
2012-09-22 Colin Watson <cjwatson@ubuntu.com>
Fix grub-emu build on FreeBSD.

View file

@ -330,7 +330,7 @@ if [ x$source_dir = x ]; then
fi
if ! [ -d "$source_dir" ]; then
gettext_printf "%s doesn't exist. Please specify --target or --directory\\n" "source_dir"
gettext_printf "%s doesn't exist. Please specify --target or --directory\\n" "$source_dir"
exit 1
fi