2019-05-18 10:06:11 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2019-07-13 01:15:56 -06:00
|
|
|
machine=$(gcc -dumpmachine)
|
|
|
|
|
2019-05-18 10:06:11 -06:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--enable-targets=x86_64-pep \
|
|
|
|
--disable-multilib \
|
|
|
|
--disable-werror \
|
|
|
|
--disable-nls \
|
|
|
|
--with-mmap \
|
2019-07-13 01:15:56 -06:00
|
|
|
--build="$machine" \
|
2019-05-18 10:06:11 -06:00
|
|
|
--with-system-zlib
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR="$1" install
|
2019-06-18 02:48:13 -06:00
|
|
|
|
|
|
|
# Remove all info files.
|
|
|
|
rm -rf "$1/usr/share/info"
|