Files
bsdiff/autogen.sh
Patrick McCarty 285133f334 Initial commit
Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2016-02-16 11:57:55 -08:00

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