* util/grub-install-common.c (grub_install_copy_files): Fix module
destination directory.
This commit is contained in:
parent
4d5b72cdb4
commit
b40ce65180
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2013-11-18 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* util/grub-install-common.c (grub_install_copy_files): Fix module
|
||||
destination directory.
|
||||
|
||||
2013-11-18 Colin Watson <cjwatson@ubuntu.com>
|
||||
|
||||
* grub-core/osdep/unix/hostdisk.c (grub_util_make_temporary_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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue