diff --git a/ChangeLog b/ChangeLog index fec4dc731..ff2c821e3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-11-18 Vladimir Serbinenko + + * util/grub-install-common.c (grub_install_copy_files): Fix module + destination directory. + 2013-11-18 Colin Watson * grub-core/osdep/unix/hostdisk.c (grub_util_make_temporary_file): diff --git a/util/grub-install-common.c b/util/grub-install-common.c index bdb81a72d..0bc7ea3ae 100644 --- a/util/grub-install-common.c +++ b/util/grub-install-common.c @@ -671,7 +671,7 @@ grub_install_copy_files (const char *src, dir++; else dir = srcf; - dstf = grub_util_path_concat (2, dst, dir); + dstf = grub_util_path_concat (2, dst_platform, dir); grub_install_compress_file (srcf, dstf, 1); free (dstf); }