mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-01-14 00:33:30 +00:00
11 lines
340 B
Bash
Executable File
11 lines
340 B
Bash
Executable File
#! /bin/bash
|
|
|
|
autoreconf -fi
|
|
sed -i '/<linux\/if_bridge.h>/i#define _LINUX_IN6_H' lib/route/link/bridge.c
|
|
patch -Np0 -i ../libnl-3.4.0-musl-fix.patch
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--disable-static
|
|
read -p "Compile? " && make -j2 &&
|
|
read -p "Install? " && sudo -S porg -lD "make install -j1 "
|