blob: ca96773145c77ca45aa7795f776865ead82d0d60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh -e
# Swap to awk script instead of perl script
# for building rsync. See files/mkproto.awk.
sed 's/perl/awk -f/;s/mkproto.pl/mkproto.awk/' Makefile.in > _
cat _ > Makefile.in; rm -f _
export CFLAGS="-static $CFLAGS"
./configure \
--prefix=/usr \
--with-included-popt \
--disable-xxhash \
--disable-lz4 \
--disable-zstd \
--disable-openssl \
--disable-simd \
--without-included-zlib
make
make DESTDIR="$1" install
|