summaryrefslogtreecommitdiffstats
path: root/installer
diff options
context:
space:
mode:
authorDirk von Suchodoletz2009-08-19 12:51:16 +0200
committerDirk von Suchodoletz2009-08-19 12:51:16 +0200
commita6b1e6894fc5a18db73322a04f04118a5c32a2c6 (patch)
treeea0b6652f62b6341fcb303139324e8cba282bc62 /installer
parentFix for removable device listing in vmchooser. (diff)
downloadcore-a6b1e6894fc5a18db73322a04f04118a5c32a2c6.tar.gz
core-a6b1e6894fc5a18db73322a04f04118a5c32a2c6.tar.xz
core-a6b1e6894fc5a18db73322a04f04118a5c32a2c6.zip
No need for the uclibc-wrapper in stage4 any more ...
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@3104 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer')
-rw-r--r--installer/OpenSLX/OSSetup/Engine.pm8
1 files changed, 2 insertions, 6 deletions
diff --git a/installer/OpenSLX/OSSetup/Engine.pm b/installer/OpenSLX/OSSetup/Engine.pm
index e4e36da5..a49d447f 100644
--- a/installer/OpenSLX/OSSetup/Engine.pm
+++ b/installer/OpenSLX/OSSetup/Engine.pm
@@ -1103,12 +1103,8 @@ sub _copyUclibcRootfs
# if we're doing a fresh install we need to create /lib, /bin first
mkdir "$targetRoot/lib";
mkdir "$targetRoot/bin";
- # copy uclibc-wrapper into the standard bin directory of the vendor os
- my $uClibCmd = "cp $openslxConfig{'base-path'}/bin/uclibc-wrapper";
- $uClibCmd .= " $targetRoot/bin";
- system($uClibCmd);
- # link uClibc from the uclib-rootfs to /lib to make LD_PRELOAD=... working
- $uClibCmd = "ln -sf /opt/openslx/uclib-rootfs/lib/ld-uClibc.so.0";
+ # link uClibc from the uclib-rootfs to /lib to make tools working
+ my $uClibCmd = "ln -sf /opt/openslx/uclib-rootfs/lib/ld-uClibc.so.0";
$uClibCmd .= " $targetRoot/lib/ld-uClibc.so.0";
system($uClibCmd);