blob: 6da916d11ba72495504bcaa7ca1941ead7b0ca34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh -e
patch -p0 < musl.patch
export LDFLAGS="$LDFLAGS -static"
./configure \
--prefix=/usr \
--without-x \
--disable-rpath \
--disable-nls
make
make DESTDIR="$1" install
|