mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
379de73603
Something I used for 'git bisect run', but we should really add this as part of our process.
15 lines
218 B
Bash
Executable file
15 lines
218 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
|