From 473959f052f816ea485dc63e3355785a6c997c2a Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Mon, 24 Sep 2012 18:50:35 +0100 Subject: [PATCH] * util/grub-install.in: Make the error message if $source_dir doesn't exist more useful. --- ChangeLog | 5 +++++ util/grub-install.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3eda38ffe..a53c5cc8f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-09-24 Colin Watson + + * util/grub-install.in: Make the error message if $source_dir + doesn't exist more useful. + 2012-09-22 Colin Watson Fix grub-emu build on FreeBSD. diff --git a/util/grub-install.in b/util/grub-install.in index e19f1cd94..56be98f12 100644 --- a/util/grub-install.in +++ b/util/grub-install.in @@ -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