]> git.notmuchmail.org Git - notmuch/blobdiff - devel/out-of-tree-build-check.sh
devel/check-out-of-tree-build.sh: consistent naming, consistent quoting
[notmuch] / devel / out-of-tree-build-check.sh
diff --git a/devel/out-of-tree-build-check.sh b/devel/out-of-tree-build-check.sh
deleted file mode 100755 (executable)
index 984b4b5..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/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