summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2014-10-21 23:34:13 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2014-10-21 23:37:43 +0200
commit1b94db0c531b1d9f7a3fc095a5b646fccffc20ec (patch)
tree7a508073887d989e092eb3694346672c615583f7
parent8d32986d9ceae07aa986c81c85d03645d51792ae (diff)
downloaddrakx-1b94db0c531b1d9f7a3fc095a5b646fccffc20ec.tar
drakx-1b94db0c531b1d9f7a3fc095a5b646fccffc20ec.tar.gz
drakx-1b94db0c531b1d9f7a3fc095a5b646fccffc20ec.tar.bz2
drakx-1b94db0c531b1d9f7a3fc095a5b646fccffc20ec.tar.xz
drakx-1b94db0c531b1d9f7a3fc095a5b646fccffc20ec.zip
perl_checker cleanups
-rwxr-xr-xtools/drakx-in-chroot4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/drakx-in-chroot b/tools/drakx-in-chroot
index b8a211a43..223ebb78b 100755
--- a/tools/drakx-in-chroot
+++ b/tools/drakx-in-chroot
@@ -188,8 +188,8 @@ sub create_initial_symlinks() {
symlink $from, $to or die "symlinking $to failed\n";
}
}
- $from = "$STAGE2_LOCATION_ROOTED/usr";
- $to = "$SLASH_LOCATION/usr";
+ my $from = "$STAGE2_LOCATION_ROOTED/usr";
+ my $to = "$SLASH_LOCATION/usr";
symlink $from, $to or die "symlinking $to failed\n";
foreach ('bin', 'sbin', 'lib', 'lib64') {
$from = "usr/$_";