From 31264b0a784b707303ffddf21f7042a9886bd94e Mon Sep 17 00:00:00 2001 From: Honggyu Kim Date: Wed, 13 Nov 2019 17:37:21 +0900 Subject: [PATCH] build: Use bash instead of sh in configure In some environments, configure script may fail as follows: $ ./configure --prefix=$HOME/usr ./configure: 32: ./configure: Bad substitution This patch changes the shell from sh to bash explicitly to fix this. Signed-off-by: Honggyu Kim --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index df85445..79addc5 100755 --- a/configure +++ b/configure @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Copyright (c) 2022 LG Electronics Inc. # SPDX-License-Identifier: GPL-2.0