]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* util/grub-install.in: Make the error message if $source_dir
authorColin Watson <cjwatson@ubuntu.com>
Mon, 24 Sep 2012 17:50:35 +0000 (18:50 +0100)
committerColin Watson <cjwatson@ubuntu.com>
Mon, 24 Sep 2012 17:50:35 +0000 (18:50 +0100)
doesn't exist more useful.

ChangeLog
util/grub-install.in

index 3eda38ffeddc2ea2190280d10e77fd261cf0ae2c..a53c5cc8f8653b3171aeb3fb00ce1655e65b7bdc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index e19f1cd943be0613077581842a5c0209c42417ab..56be98f12e2e88e5e9c9c19e6334423911d1d69a 100644 (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