* util/grub-install-common.c (grub_install_copy_files): Fix module

destination directory.
This commit is contained in:
Vladimir Serbinenko 2013-11-18 15:59:55 +01:00
parent 4d5b72cdb4
commit b40ce65180
2 changed files with 6 additions and 1 deletions

View file

@ -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);
}