11 lines
151 B
Plaintext
11 lines
151 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
# Workaround for missing protocols/rwhod.h
|
||
|
CFLAGS="$CFLAGS -DRLOADSTUB"
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|