diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2011-09-28 10:35:36 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2011-09-28 10:35:36 +0200 |
commit | c70f303cf14a547635944e685492d78a02607d45 (patch) | |
tree | 60b484c510a73f60ce32d0e18a75b45b9b81fd84 | |
parent | 8e87030d555a647d4e653c5d42016157d6f11a16 (diff) | |
download | kanotix-c70f303cf14a547635944e685492d78a02607d45.zip kanotix-c70f303cf14a547635944e685492d78a02607d45.tar.gz |
call linux32 outside of chroot
-rwxr-xr-x | build_gfxoverlay.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build_gfxoverlay.sh b/build_gfxoverlay.sh index b9b0d78..69212dd 100755 --- a/build_gfxoverlay.sh +++ b/build_gfxoverlay.sh @@ -70,7 +70,7 @@ sed -i '/exit 3/d' overlay.sh chmod +x overlay.sh if [ "$(uname -m)" = "x86_64" ] && ! file bin/true | grep -q 'ELF 64-bit'; then echo "Found 32bit chroot, using linux32..." - chroot . linux32 /overlay.sh -v $ver -z + linux32 chroot . /overlay.sh -v $ver -z else chroot . /overlay.sh -v $ver -z fi |