forked from pool/grub2
0edc850993
Fix build with missing gets declaration (glibc 2.16) (forwarded request 129225 from a_jaeger) OBS-URL: https://build.opensuse.org/request/show/129226 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grub2?expand=0&rev=42
15 lines
640 B
Diff
15 lines
640 B
Diff
--- a/util/grub.d/00_header.in 2012-03-27 21:45:08.992732967 -0400
|
|
+++ b/util/grub.d/00_header.in 2012-03-27 21:45:08.992732967 -0400
|
|
@@ -253,8 +253,9 @@
|
|
set theme=(\$root)`make_system_path_relative_to_its_root $GRUB_THEME`
|
|
export theme
|
|
EOF
|
|
- elif [ "x$GRUB_BACKGROUND" != x ] && [ -f "$GRUB_BACKGROUND" ] \
|
|
- && is_path_readable_by_grub "$GRUB_BACKGROUND"; then
|
|
+ fi
|
|
+ if [ "x$GRUB_BACKGROUND" != x ] && [ -f "$GRUB_BACKGROUND" ] \
|
|
+ && is_path_readable_by_grub "$GRUB_BACKGROUND"; then
|
|
gettext_printf "Found background: %s\n" "$GRUB_BACKGROUND" >&2
|
|
case "$GRUB_BACKGROUND" in
|
|
*.png) reader=png ;;
|