We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ffa65d commit 8c3b1acCopy full SHA for 8c3b1ac
1 file changed
populate-lib
@@ -52,11 +52,13 @@ for my $lib (keys %libraries)
52
# and die "$dirname: Unable to make directory: $!\n";
53
# }
54
55
- copy $lib, "$dest/$libname"
+ my $dest_lib = "$dest/$libname";
56
+
57
+ copy $lib, $dest_lib
58
or die "$lib: Unable to copy: $!\n";
59
60
# make them executable because otherwise chroot barfs
- system("chmod", "+x", "$dest/$libname");
61
+ system("chmod", "+x", $dest_lib);
62
}
63
64
print "Total size $size\n";
0 commit comments