From e4107a103bf91707d46bca4f657ee94017cd97bc Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Tue, 6 Oct 2015 17:38:35 -0400 Subject: [PATCH] Port: make bootstrap script work on most shells MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- bootstrap | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.34.1