12 lines
187 B
Plaintext
12 lines
187 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
# Fix a missing include
|
||
|
sed -i '/<dirent.h>/a #include <limits.h>' src/ucm/ucm_exec.c
|
||
|
|
||
|
./configure \
|
||
|
--without-debug \
|
||
|
--prefix=/usr
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|