mirror of
https://github.com/Kron4ek/Conty
synced 2025-02-01 07:57:40 +01:00
Fix typo
This commit is contained in:
parent
70c5549a29
commit
575e7f4662
1 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
script_dir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"
|
script_dir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"
|
||||||
|
|
||||||
squshfuse_version="0.1.103"
|
squashfuse_version="0.1.103"
|
||||||
bwrap_version="0.4.1"
|
bwrap_version="0.4.1"
|
||||||
lz4_version="1.9.3"
|
lz4_version="1.9.3"
|
||||||
zstd_version="1.4.9"
|
zstd_version="1.4.9"
|
||||||
|
@ -18,7 +18,7 @@ cd "${script_dir}"/build-utils || exit 1
|
||||||
|
|
||||||
wget -q --show-progress -O lz4.tar.gz https://github.com/lz4/lz4/archive/refs/tags/v${lz4_version}.tar.gz
|
wget -q --show-progress -O lz4.tar.gz https://github.com/lz4/lz4/archive/refs/tags/v${lz4_version}.tar.gz
|
||||||
wget -q --show-progress -O zstd.tar.gz https://github.com/facebook/zstd/archive/refs/tags/v${zstd_version}.tar.gz
|
wget -q --show-progress -O zstd.tar.gz https://github.com/facebook/zstd/archive/refs/tags/v${zstd_version}.tar.gz
|
||||||
wget -q --show-progress -O squashfuse.tar.gz https://github.com/vasi/squashfuse/archive/refs/tags/${squshfuse_version}.tar.gz
|
wget -q --show-progress -O squashfuse.tar.gz https://github.com/vasi/squashfuse/archive/refs/tags/${squashfuse_version}.tar.gz
|
||||||
wget -q --show-progress -O bwrap.tar.gz https://github.com/containers/bubblewrap/archive/refs/tags/v${bwrap_version}.tar.gz
|
wget -q --show-progress -O bwrap.tar.gz https://github.com/containers/bubblewrap/archive/refs/tags/v${bwrap_version}.tar.gz
|
||||||
|
|
||||||
tar xf lz4.tar.gz
|
tar xf lz4.tar.gz
|
||||||
|
@ -37,7 +37,7 @@ make -j$(nproc) DESTDIR="${script_dir}"/build-utils/bin install
|
||||||
cd ../zstd-${zstd_version}
|
cd ../zstd-${zstd_version}
|
||||||
make -j$(nproc) DESTDIR="${script_dir}"/build-utils/bin install
|
make -j$(nproc) DESTDIR="${script_dir}"/build-utils/bin install
|
||||||
|
|
||||||
cd ../squashfuse-${squshfuse_version}
|
cd ../squashfuse-${squashfuse_version}
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
./configure --without-zlib --without-xz --without-lzo
|
./configure --without-zlib --without-xz --without-lzo
|
||||||
make -j$(nproc) DESTDIR="${script_dir}"/build-utils/bin install
|
make -j$(nproc) DESTDIR="${script_dir}"/build-utils/bin install
|
||||||
|
@ -70,4 +70,4 @@ clear
|
||||||
echo "Done!"
|
echo "Done!"
|
||||||
echo
|
echo
|
||||||
echo "Keep in mind that your glibc version is: $(ldd --version | head -n 1)"
|
echo "Keep in mind that your glibc version is: $(ldd --version | head -n 1)"
|
||||||
echo "The compiled utils will not work with older glibc versions!"
|
echo "The compiled utils will not work with older glibc versions!"
|
||||||
|
|
Loading…
Add table
Reference in a new issue