diff options
-rw-r--r-- | perl-install/install/NEWS | 3 | ||||
-rwxr-xr-x | tools/drakx-in-chroot | 7 |
2 files changed, 4 insertions, 6 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index a3f405c1e..6220db76d 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,6 @@ +- drakx-in-chroot: + o fix using remote repositories + Version 11.18 - 19 August 2008 - center sub dialogs diff --git a/tools/drakx-in-chroot b/tools/drakx-in-chroot index 6073ce236..2496c21d2 100755 --- a/tools/drakx-in-chroot +++ b/tools/drakx-in-chroot @@ -69,12 +69,7 @@ if ($remote_repository) { } sys("$sudo mount -o bind $dir $SLASH_LOCATION$prefix_ROOTED"); - -if ($repository_uri) { - $repository_uri = '/C/cooker/i586'; -} elsif (!$remote_repository) { - $repository_uri = $repository_without_arch; -} +$repository_uri ||= $repository_without_arch if !$remote_repository; sys("$sudo mount -o bind $repository_uri $SLASH_LOCATION$MEDIA_LOCATION_ROOTED") if $repository_uri; sys("$sudo mount -t proc none $SLASH_LOCATION/proc"); |