From 005f46c94a7125acb189c86ae3fc36d31e3effa7 Mon Sep 17 00:00:00 2001 From: Vladimir 'phcoder' Serbinenko Date: Sat, 10 Mar 2012 12:33:52 +0100 Subject: [PATCH] * util/grub-install.in: Check for themes/starfield/theme.txt and not themes/starfield. --- ChangeLog | 5 +++++ util/grub-install.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e3c7a7bc7..114f1a4e7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-03-10 Vladimir Serbinenko + + * util/grub-install.in: Check for themes/starfield/theme.txt and not + themes/starfield. + 2012-03-10 Vladimir Serbinenko * grub-core/gnulib/regcomp.c (regerror): Fix out-of-range array lookup. diff --git a/util/grub-install.in b/util/grub-install.in index 83ca9ef33..9c1d1338b 100644 --- a/util/grub-install.in +++ b/util/grub-install.in @@ -529,7 +529,7 @@ for dir in "${localedir}"/*; do fi done -if test -d "${pkgdatadir}"/themes/starfield; then +if test -f "${pkgdatadir}"/themes/starfield/theme.txt; then mkdir -p "${grubdir}"/themes/starfield cp "${pkgdatadir}"/themes/starfield/* "${grubdir}"/themes/starfield fi