mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-01-14 00:33:30 +00:00
15 lines
400 B
Bash
15 lines
400 B
Bash
#! /bin/bash
|
|
|
|
# source: http://roy.marples.name/downloads/dhcpcd/dhcpcd-7.0.7.tar.xz
|
|
|
|
patch -Np0 -i ../dhcpcd-7.0.7-wpa-hook-stop.patch
|
|
sed -i 's,-B,& -s,' hooks/10-wpa_supplicant
|
|
|
|
./configure --prefix=/usr \
|
|
--sbindir=/usr/bin \
|
|
--sysconfdir=/etc \
|
|
--rundir=/run &&
|
|
|
|
read -p "Compile? " && make -j2 &&
|
|
read -p "Install? " && sudo -S porg -lD "make install -j1 "
|