24 lines
371 B
Bash
Executable File
24 lines
371 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Remove -pie from ldflags to prevent build breakage.
|
|
LDFLAGS="$(echo $LDFLAGS|sed 's/-pie//')"
|
|
|
|
cat > makeinfo <<EOF
|
|
#!/bin/sh
|
|
printf 'makeinfo (GNU texinfo) 5.2\n'
|
|
EOF
|
|
|
|
chmod +x makeinfo
|
|
export PATH=$PATH:$PWD
|
|
|
|
mkdir _build
|
|
cd _build
|
|
|
|
../configure \
|
|
--prefix=/usr \
|
|
--without-installed-readline \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR="$1" install
|