* util/grub-install.in: Make the error message if $source_dir
doesn't exist more useful.
This commit is contained in:
parent
794c8c3375
commit
473959f052
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
2012-09-22 Colin Watson <cjwatson@ubuntu.com>
|
||||||
|
|
||||||
Fix grub-emu build on FreeBSD.
|
Fix grub-emu build on FreeBSD.
|
||||||
|
|
|
@ -330,7 +330,7 @@ if [ x$source_dir = x ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! [ -d "$source_dir" ]; then
|
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
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue