Advertisement
Guest User

Untitled

a guest
Jul 10th, 2022
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.35 KB | None | 0 0
  1.   if (!bootdir)
  2.     bootdir = grub_util_path_concat (3, "/", rootdir, GRUB_BOOT_DIR_NAME);
  3.  
  4.   {
  5.     char * t = grub_util_path_concat (2, bootdir, GRUB_DIR_NAME);
  6.     grub_install_mkdir_p (t);
  7.     grubdir = grub_canonicalize_file_name (t);
  8.     if (!grubdir)
  9.       grub_util_error (_("failed to get canonical path of `%s'"), t);
  10.     free (t);
  11.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement