mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
devel/check-out-of-tree-build.sh: consistent naming, consistent quoting
Renamed from out-of-tree-build-check.sh to be consistent with other files in this directory. Fixed quoting in "$srcdir" usage for additional robustness, other quoting changes for consistency.
This commit is contained in:
parent
288c3660d8
commit
54aef07159
1 changed files with 4 additions and 4 deletions
|
@ -4,12 +4,12 @@
|
|||
|
||||
set -eu
|
||||
|
||||
srcdir="$(cd "$(dirname "$0")"/.. && pwd)"
|
||||
srcdir=$(cd "$(dirname "$0")"/.. && pwd)
|
||||
builddir=$(mktemp -d)
|
||||
|
||||
cd $builddir
|
||||
cd "$builddir"
|
||||
|
||||
$srcdir/configure
|
||||
"$srcdir"/configure
|
||||
make "$@"
|
||||
|
||||
rm -rf $builddir
|
||||
rm -rf "$builddir"
|
Loading…
Reference in a new issue