forked from josch/mmdebstrap
Be explicit about where to install libfakeroot and libfakechroot
This commit is contained in:
parent
b7b6b28377
commit
e027e9458f
1 changed files with 2 additions and 2 deletions
|
@ -668,11 +668,11 @@ sub setup {
|
||||||
}
|
}
|
||||||
my $fakechrootdir = "/usr/lib/$deb_host_multiarch/fakechroot";
|
my $fakechrootdir = "/usr/lib/$deb_host_multiarch/fakechroot";
|
||||||
if (!-e "$fakechrootdir/libfakechroot.so") {
|
if (!-e "$fakechrootdir/libfakechroot.so") {
|
||||||
die "$fakechrootdir/libfakechroot.so doesn't exist. Install libfakechroot:$options->{nativearch}"
|
die "$fakechrootdir/libfakechroot.so doesn't exist. Install libfakechroot:$options->{nativearch} outside the chroot"
|
||||||
}
|
}
|
||||||
my $fakerootdir = "/usr/lib/$deb_host_multiarch/libfakeroot";
|
my $fakerootdir = "/usr/lib/$deb_host_multiarch/libfakeroot";
|
||||||
if (!-e "$fakerootdir/libfakeroot-sysv.so") {
|
if (!-e "$fakerootdir/libfakeroot-sysv.so") {
|
||||||
die "$fakerootdir/libfakeroot-sysv.so doesn't exist. Install libfakeroot:$options->{nativearch}"
|
die "$fakerootdir/libfakeroot-sysv.so doesn't exist. Install libfakeroot:$options->{nativearch} outside the chroot"
|
||||||
}
|
}
|
||||||
# fakechroot only fills LD_LIBRARY_PATH with the directories of
|
# fakechroot only fills LD_LIBRARY_PATH with the directories of
|
||||||
# the host's architecture. We append the directories of the chroot
|
# the host's architecture. We append the directories of the chroot
|
||||||
|
|
Loading…
Reference in a new issue