mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-04 14:05:50 -07:00
14 lines
253 B
Bash
Executable File
14 lines
253 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Fix issues on musl.
|
|
patch -p0 < musl-ipv6.patch
|
|
sed -i '/<linux\/if_bridge.h>/i#define _LINUX_IN6_H' lib/route/link/bridge.c
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--disable-static
|
|
|
|
make
|
|
make DESTDIR="$1" install
|