From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id 056606DE0C66 for ; Mon, 25 Sep 2017 22:31:55 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: 0.487 X-Spam-Level: X-Spam-Status: No, score=0.487 tagged_above=-999 required=5 tests=[AWL=-0.165, SPF_NEUTRAL=0.652] autolearn=disabled Received: from arlo.cworth.org ([127.0.0.1]) by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2AGdz35wxH-j for ; Mon, 25 Sep 2017 22:31:54 -0700 (PDT) Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34]) by arlo.cworth.org (Postfix) with ESMTP id 3C6DE6DE0361 for ; Mon, 25 Sep 2017 22:31:54 -0700 (PDT) Received: from guru.guru-group.fi (localhost [IPv6:::1]) by guru.guru-group.fi (Postfix) with ESMTP id 1A3081000E0; Tue, 26 Sep 2017 08:32:11 +0300 (EEST) From: Tomi Ollila To: Jani Nikula , notmuch@notmuchmail.org Subject: Re: [PATCH 24/24] devel: add script to test out-of-tree builds In-Reply-To: References: <578efe3a1c55a7030f4f58d56be8ae8a3149cd5d.1506370901.git.jani@nikula.org> User-Agent: Notmuch/0.25+89~g5a0c015 (https://notmuchmail.org) Emacs/25.2.1 (x86_64-unknown-linux-gnu) X-Face: HhBM'cA~ MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Sep 2017 05:31:55 -0000 On Tue, Sep 26 2017, Tomi Ollila wrote: >> + >> +set -eu >> + >> +srcdir="$(cd "$(dirname "$0")"/.. && pwd)" > > quotes unnecessary above, but may clarify things... outmost quotes, that is -- e.g. srcdir=$(cd "$(dirname "$0")"/.. && pwd) -- other quotes are necessary > >> +builddir=$(mktemp -d)