12 lines
187 B
Bash
Executable File
12 lines
187 B
Bash
Executable File
#!/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
|