mirror of
https://github.com/clearlinux/bsdiff.git
synced 2026-04-28 10:53:45 +00:00
14 lines
173 B
Bash
Executable File
14 lines
173 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
autoreconf --force --install --symlink --warnings=all
|
|
|
|
args="\
|
|
--prefix=/usr"
|
|
|
|
if test -z "${NOCONFIGURE}"; then
|
|
./configure $args "$@"
|
|
make clean
|
|
fi
|