Skip to content
Permalink
Browse files Browse the repository at this point in the history
adjust unpack_bootlogo script
  • Loading branch information
wfeldt committed Feb 5, 2019
1 parent 3e5f7a0 commit 733e22a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/unpack_bootlogo
Expand Up @@ -21,7 +21,7 @@ sub unpack_bootlogo

@files = `cpio --quiet -t <$dir/bootlogo`;

system "cd $tmp; cpio --quiet -i <../bootlogo";
system "cd $tmp; cpio --quiet --preserve-modification-time -i <../bootlogo";

for (@files) {
chomp;
Expand All @@ -48,7 +48,7 @@ sub unpack_bootlogo
}
}

open P, "| cd $tmp; cpio --quiet -o >../bootlogo";
open P, "| cd $tmp; cpio --quiet --reproducible --owner=+0:+0 -o >../bootlogo";
print P "$_\n" for grep $_, @files;
if($xdir) { print P "$_\n" for @ext }
close P;
Expand Down

0 comments on commit 733e22a

Please sign in to comment.