]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* grub-core/commands/search_file.c (SEARCH_TARGET): Remove obsolete
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Fri, 3 Feb 2012 10:46:18 +0000 (11:46 +0100)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Fri, 3 Feb 2012 10:46:18 +0000 (11:46 +0100)
macro.
* grub-core/commands/search_label.c (SEARCH_TARGET): Likewise.
* grub-core/commands/search_uuid.c (SEARCH_TARGET): Likewise.

ChangeLog
grub-core/commands/search_file.c
grub-core/commands/search_label.c
grub-core/commands/search_uuid.c

index a62dc564a3b1e7b3d450ae33e6f19b905f3316ab..931b0c3e0c922b9f162c748e8bb52e9b0b7e1d8d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2012-02-03  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * 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  <phcoder@gmail.com>
 
        * util/grub-mkstandalone.in: Fix help messages. Gettextize.
index 73ce89ccc3582f51184ee1ad9797b0cffa40bb22..cc2a5f93904fc6c714fa898ff5de758f30d33059 100644 (file)
@@ -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"
index ee9c792be8af0b46ed4147e0e10cee4750299120..12e7c18311973325c0bf72b1ca727b62f4d94657 100644 (file)
@@ -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"
index 52f83812cd211374b30ffe88b10b6d3c39b72af7..541bcf54b310cd0add8e71aa1be09e8039dc9058 100644 (file)
@@ -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"