* util/grub-install.c: Inform user about install platform.

This commit is contained in:
Vladimir Serbinenko 2013-12-20 16:57:48 +01:00
parent 2fa5a58ca3
commit 871aa709af
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
* util/grub-install.c: Inform user about install platform.
2013-12-18 Vladimir Serbinenko <phcoder@gmail.com>
* configure.ac: Set version to 2.02~beta1.

View File

@ -862,6 +862,12 @@ main (int argc, char *argv[])
platform = grub_install_get_target (grub_install_source_directory);
{
char *platname = grub_install_get_platform_name (platform);
fprintf (stderr, _("Installing for %s platform.\n"), platname);
free (platname);
}
switch (platform)
{
case GRUB_INSTALL_PLATFORM_I386_PC: