blob: 35dcd37683319233644803b27b9ad764207fd7e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh -e
export CFLAGS="$CFLAGS -static"
export LDFLAGS="$LDFLAGS -static"
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--sysconfdir=/etc \
--enable-symlink-install \
--disable-uuidd \
--disable-libuuid \
--disable-libblkid \
--disable-elf-shlibs \
--disable-fsck
# MKDIR_P fixes an install issue on musl/busybox.
make
make MKDIR_P="install -d" DESTDIR="$1" install install-libs
# Make static libraries writable.
chmod -v u+w "$1/usr/lib/"*.a
|