forked from alnux/repo
7 lines
250 B
Text
Executable file
7 lines
250 B
Text
Executable file
wget -O ${temp_location}/make/make.tar.gz https://ftp.gnu.org/gnu/make/make-4.3.tar.gz
|
|
untar -xf ${temp_location}/make/make.tar.gz
|
|
cd ${temp_location}/make/make
|
|
export CFLAGS="$CFLAGS -static"
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR="$1" install
|