From f7c71e68b5dd7cd7e4af638421e005df9a72f7f7 Mon Sep 17 00:00:00 2001 From: Vladimir 'phcoder' Serbinenko Date: Fri, 3 Feb 2012 11:46:18 +0100 Subject: [PATCH] * grub-core/commands/search_file.c (SEARCH_TARGET): Remove obsolete macro. * grub-core/commands/search_label.c (SEARCH_TARGET): Likewise. * grub-core/commands/search_uuid.c (SEARCH_TARGET): Likewise. --- ChangeLog | 7 +++++++ grub-core/commands/search_file.c | 1 - grub-core/commands/search_label.c | 1 - grub-core/commands/search_uuid.c | 1 - 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index a62dc564a..931b0c3e0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2012-02-03 Vladimir Serbinenko + + * grub-core/commands/search_file.c (SEARCH_TARGET): Remove obsolete + macro. + * grub-core/commands/search_label.c (SEARCH_TARGET): Likewise. + * grub-core/commands/search_uuid.c (SEARCH_TARGET): Likewise. + 2012-02-03 Vladimir Serbinenko * util/grub-mkstandalone.in: Fix help messages. Gettextize. diff --git a/grub-core/commands/search_file.c b/grub-core/commands/search_file.c index 73ce89ccc..cc2a5f939 100644 --- a/grub-core/commands/search_file.c +++ b/grub-core/commands/search_file.c @@ -1,6 +1,5 @@ #define DO_SEARCH_FILE 1 #define FUNC_NAME grub_search_fs_file #define COMMAND_NAME "search.file" -#define SEARCH_TARGET "file" #define HELP_MESSAGE N_("Search devices by file. If VARIABLE is specified, the first device found is set to a variable.") #include "search.c" diff --git a/grub-core/commands/search_label.c b/grub-core/commands/search_label.c index ee9c792be..12e7c1831 100644 --- a/grub-core/commands/search_label.c +++ b/grub-core/commands/search_label.c @@ -1,6 +1,5 @@ #define DO_SEARCH_FS_LABEL 1 #define FUNC_NAME grub_search_label #define COMMAND_NAME "search.fs_label" -#define SEARCH_TARGET "filesystem label" #define HELP_MESSAGE N_("Search devices by label. If VARIABLE is specified, the first device found is set to a variable.") #include "search.c" diff --git a/grub-core/commands/search_uuid.c b/grub-core/commands/search_uuid.c index 52f83812c..541bcf54b 100644 --- a/grub-core/commands/search_uuid.c +++ b/grub-core/commands/search_uuid.c @@ -1,6 +1,5 @@ #define DO_SEARCH_FS_UUID 1 #define FUNC_NAME grub_search_fs_uuid #define COMMAND_NAME "search.fs_uuid" -#define SEARCH_TARGET "filesystem UUID" #define HELP_MESSAGE N_("Search devices by UUID. If VARIABLE is specified, the first device found is set to a variable.") #include "search.c"