Skip to content

Commit

Permalink
build: Use bash instead of sh in configure
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
honggyukim authored and Bojun-Seo committed Dec 3, 2022
1 parent 27d5734 commit 31264b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# Copyright (c) 2022 LG Electronics Inc.
# SPDX-License-Identifier: GPL-2.0

Expand Down

0 comments on commit 31264b0

Please sign in to comment.