From: Michael Jeanson Date: Tue, 6 Oct 2015 21:38:35 +0000 (-0400) Subject: Port: make bootstrap script work on most shells X-Git-Tag: v2.8.0-rc1~274 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=e4107a103bf91707d46bca4f657ee94017cd97bc;ds=sidebyside Port: make bootstrap script work on most shells Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- diff --git a/bootstrap b/bootstrap index c71b862a5..dd404cb85 100755 --- a/bootstrap +++ b/bootstrap @@ -1,8 +1,8 @@ -#! /bin/sh +#!/bin/sh set -x -if [ ! -e config ]; then +if [ ! -d "config" ]; then mkdir config fi -autoreconf -i +autoreconf -vif