blob: 4e0e36b5ef91ee832bbf7ee26dd289d46a9f46de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh -e
# Standalone build for info that doesn't depend on Perl. Only the info page
# viewer.
export LDFLAGS="$LDFLAGS -static"
export PERL=/bin/true
./configure \
--disable-nls \
--disable-rpath
make -C gnulib/lib
make -C info
install -Dm755 info/ginfo "$1/usr/bin/info"
|