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