repo/glibc/build
2021-07-07 12:48:44 +02:00

8 lines
246 B
Text
Executable file

wget -O ${temp_location}/glibc/glibc.tar.gz https://ftp.gnu.org/gnu/libc/glibc-2.33.tar.gz
tar -xf ${temp_location}/glibc/glibc.tar.gz
cd ${temp_location}/glibc/glibc
mkdir build
cd build
../configure --prefix=/usr
make
make install DESTDIR="$1"