From 52c08c841ab534f32e8ea489b0668421826987d6 Mon Sep 17 00:00:00 2001 From: Oxore Date: Thu, 30 Jun 2022 12:07:35 +0300 Subject: Use /bin/bash, fix string comparison --- 3-build-binutils.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '3-build-binutils.sh') diff --git a/3-build-binutils.sh b/3-build-binutils.sh index a370f86..0ef7969 100644 --- a/3-build-binutils.sh +++ b/3-build-binutils.sh @@ -1,11 +1,11 @@ -#!/bin/sh +#!/bin/bash source ./common options_do_configure=1 options_do_build=1 options_do_install=1 -if [ "$1" == "-i" ]; then +if [ "$1" = "-i" ]; then options_do_configure= options_do_build= options_do_install=1 -- cgit v1.2.3