2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00
repo/core/libnl/build

14 lines
253 B
Plaintext
Raw Normal View History

2019-06-21 08:48:53 +00:00
#!/bin/sh -e
2019-06-21 11:15:23 +00:00
# Fix issues on musl.
2019-06-21 11:12:00 +00:00
patch -p0 < musl-ipv6.patch
2019-06-21 11:14:11 +00:00
sed -i '/<linux\/if_bridge.h>/i#define _LINUX_IN6_H' lib/route/link/bridge.c
2019-06-21 11:12:00 +00:00
2019-06-21 08:48:53 +00:00
./configure \
2019-06-21 08:52:39 +00:00
--prefix=/usr \
--sysconfdir=/etc \
2019-06-21 08:52:39 +00:00
--disable-static
2019-06-21 08:48:53 +00:00
make
make DESTDIR="$1" install