notmuch/devel/check-out-of-tree-build.sh
David Bremner 126347b694 Import notmuch_0.38.2.orig.tar.xz
[dgit import orig notmuch_0.38.2.orig.tar.xz]
2023-12-01 07:51:09 -04:00

15 lines
222 B
Bash
Executable file

#!/bin/sh
# test out-of-tree builds in a temp directory
# passes all args to make
set -eu
srcdir=$(cd "$(dirname "$0")"/.. && pwd)
builddir=$(mktemp -d)
cd "$builddir"
"$srcdir"/configure
make "$@"
rm -rf "$builddir"