]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
revert last revision. It's ineffective
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Fri, 8 Apr 2011 11:18:27 +0000 (13:18 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Fri, 8 Apr 2011 11:18:27 +0000 (13:18 +0200)
ChangeLog
grub-core/Makefile.am

index fd5cadae51bad0f11c1de4bc8a8406cb27b44471..7b247ca81fdf33139cae3e9801a1a7c44e12f132 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,3 @@
-2011-04-08  Vladimir Serbinenko  <phcoder@gmail.com>
-
-       * grub-core/Makefile.am: Properly escape parenthesis in sed expressions.
-       Fixes Estonian locale.
-       Reported by: Leho Kraav.
-
 2011-04-08  Vladimir Serbinenko  <phcoder@gmail.com>
 
        * grub-core/normal/menu.c: Add missing include.
index 9e0ca7cc31a1ffb14f4ab12feda09c2ad8673d84..94f7f3ffe7483aaedfca73654a228780ada91bb7 100644 (file)
@@ -200,8 +200,8 @@ noinst_DATA += kernel_syms.lst
 kernel_syms.lst: $(KERNEL_HEADER_FILES) $(top_builddir)/config.h
        $(TARGET_CPP) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS_KERNEL) $(CPPFLAGS) $(CFLAGS) -DGRUB_SYMBOL_GENERATOR=1 $^ >kernel_syms.input
        cat kernel_syms.input | grep -v '^#' | sed -n \
-         -e '/EXPORT_FUNC *\([a-zA-Z0-9_]*\)/{s/.*EXPORT_FUNC *(\([a-zA-Z0-9_]*\)).*/defined kernel '"$(ASM_PREFIX)"'\1/;p;}' \
-         -e '/EXPORT_VAR *\([a-zA-Z0-9_]*\)/{s/.*EXPORT_VAR *(\([a-zA-Z0-9_]*\)).*/defined kernel '"$(ASM_PREFIX)"'\1/;p;}' \
+         -e '/EXPORT_FUNC *([a-zA-Z0-9_]*)/{s/.*EXPORT_FUNC *(\([a-zA-Z0-9_]*\)).*/defined kernel '"$(ASM_PREFIX)"'\1/;p;}' \
+         -e '/EXPORT_VAR *([a-zA-Z0-9_]*)/{s/.*EXPORT_VAR *(\([a-zA-Z0-9_]*\)).*/defined kernel '"$(ASM_PREFIX)"'\1/;p;}' \
          | sort -u >$@
        rm -f kernel_syms.input
 CLEANFILES += kernel_syms.lst