From 57feb5f9628d2cd37327a1268b7d39492b44b40b Mon Sep 17 00:00:00 2001 From: Aditya Date: Tue, 10 Jan 2023 14:33:44 +0530 Subject: [PATCH] Fix source path after chroot --- scripts/chapter7/7.10-Python.sh | 2 +- scripts/chapter7/7.11-texinfo.sh | 2 +- scripts/chapter7/7.12-util-linux.sh | 2 +- scripts/chapter7/7.7-gettext.sh | 2 +- scripts/chapter7/7.8-bison.sh | 2 +- scripts/chapter7/7.9-perl.sh | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/chapter7/7.10-Python.sh b/scripts/chapter7/7.10-Python.sh index b6da52e..e48d1e6 100644 --- a/scripts/chapter7/7.10-Python.sh +++ b/scripts/chapter7/7.10-Python.sh @@ -1,6 +1,6 @@ #!/bin/bash -cd $LFS/sources +cd /sources tar xf Python-3.10.6.tar.xz cd Python-3.10.6 diff --git a/scripts/chapter7/7.11-texinfo.sh b/scripts/chapter7/7.11-texinfo.sh index 75eb834..46ebde5 100644 --- a/scripts/chapter7/7.11-texinfo.sh +++ b/scripts/chapter7/7.11-texinfo.sh @@ -1,6 +1,6 @@ #!/bin/bash -cd $LFS/sources +cd /sources tar xf texinfo-6.8.tar.xz cd texinfo-6.8 diff --git a/scripts/chapter7/7.12-util-linux.sh b/scripts/chapter7/7.12-util-linux.sh index f5dabf9..8e850d8 100644 --- a/scripts/chapter7/7.12-util-linux.sh +++ b/scripts/chapter7/7.12-util-linux.sh @@ -1,6 +1,6 @@ #!/bin/bash -cd $LFS/sources +cd /sources tar xf util-linux-2.38.1.tar.xz cd util-linux-2.38.1 diff --git a/scripts/chapter7/7.7-gettext.sh b/scripts/chapter7/7.7-gettext.sh index 14a7da5..0f647dd 100644 --- a/scripts/chapter7/7.7-gettext.sh +++ b/scripts/chapter7/7.7-gettext.sh @@ -1,6 +1,6 @@ #!/bin/bash -cd $LFS/sources +cd /sources tar xf gettext-0.21.tar.xz cd gettext-0.21 diff --git a/scripts/chapter7/7.8-bison.sh b/scripts/chapter7/7.8-bison.sh index 330d17f..35a5faa 100644 --- a/scripts/chapter7/7.8-bison.sh +++ b/scripts/chapter7/7.8-bison.sh @@ -1,6 +1,6 @@ #!/bin/bash -cd $LFS/sources +cd /sources tar xf bison-3.8.2.tar.xz cd bison-3.8.2 diff --git a/scripts/chapter7/7.9-perl.sh b/scripts/chapter7/7.9-perl.sh index 1066b0f..c37c6e3 100644 --- a/scripts/chapter7/7.9-perl.sh +++ b/scripts/chapter7/7.9-perl.sh @@ -1,6 +1,6 @@ #!/bin/bash -cd $LFS/sources +cd /sources tar xf perl-5.36.0.tar.xz cd perl-5.36.0