]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* util/grub-install-common.c (grub_install_copy_files): Fix module
authorVladimir Serbinenko <phcoder@gmail.com>
Mon, 18 Nov 2013 14:59:55 +0000 (15:59 +0100)
committerVladimir Serbinenko <phcoder@gmail.com>
Mon, 18 Nov 2013 14:59:55 +0000 (15:59 +0100)
destination directory.

ChangeLog
util/grub-install-common.c

index fec4dc731f3f4259e1aaae224dc091e756e54f29..ff2c821e3eb87127498f81338f7c68362d4172bc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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):
index bdb81a72d082d331d01d5601786ad0416472b335..0bc7ea3aeec64b40970b4c824dc55015b1fea4d5 100644 (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);
        }