10 lines
121 B
Plaintext
10 lines
121 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
sed -i '/<linux\/prctl.h>/d' src/system.h
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|