From 8355329b426648834fe5ff00d8eb9beda837c173 Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Tue, 6 Oct 2015 12:08:00 -0400 Subject: [PATCH] Port: make bootstrap script work on most shell 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 | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/bootstrap b/bootstrap index 1dd41c0d..dd404cb8 100755 --- a/bootstrap +++ b/bootstrap @@ -1,9 +1,8 @@ -#! /bin/sh +#!/bin/sh set -x -if [ ! -e config ]; then +if [ ! -d "config" ]; then mkdir config fi -libtoolize --force --copy -autoreconf -i +autoreconf -vif -- 2.34.1