summaryrefslogtreecommitdiffstats
path: root/rescue/make_rescue_img
diff options
context:
space:
mode:
Diffstat (limited to 'rescue/make_rescue_img')
-rwxr-xr-xrescue/make_rescue_img4
1 files changed, 4 insertions, 0 deletions
diff --git a/rescue/make_rescue_img b/rescue/make_rescue_img
index 2e3178ca7..56309dfe5 100755
--- a/rescue/make_rescue_img
+++ b/rescue/make_rescue_img
@@ -51,6 +51,10 @@ foreach (cat_("list")) {
install($_);
chomp, install_lib($_) foreach `ldd $_ 2>/dev/null | grep "=>" | sed -e 's/.*=> //' -e 's/ .*//'`;
}
+foreach (cat_("dirs")) {
+ chomp;
+ commands::mkdir_("-p", "$tmp$_");
+}
foreach (cat_("aliases")) {
chomp; my ($f, $dest) = split;
symlink $dest, "$tmp$f";