summaryrefslogtreecommitdiffstats
path: root/inc/chroot-functions.inc.sh
diff options
context:
space:
mode:
Diffstat (limited to 'inc/chroot-functions.inc.sh')
-rw-r--r--inc/chroot-functions.inc.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/chroot-functions.inc.sh b/inc/chroot-functions.inc.sh
index 2578e15..b07f3ea 100644
--- a/inc/chroot-functions.inc.sh
+++ b/inc/chroot-functions.inc.sh
@@ -2,12 +2,12 @@ chroot-exec () {
if [ $(mount |grep -c $buildrootpath/dev) -eq 0 ]; then
setupBindmounts
fi
- chroot $buildrootpath $@
+ chroot $buildrootpath linux32 $@
}
chroot-aptinstall () {
if [ $(mount |grep -c $buildrootpath/dev) -eq 0 ]; then
setupBindmounts
fi
- chroot $buildrootpath aptitude install -y $@
+ chroot $buildrootpath linux32 aptitude install -y $@
}