diff options
| author | Oxore <oxore@protonmail.com> | 2022-06-30 12:07:35 +0300 |
|---|---|---|
| committer | Oxore <oxore@protonmail.com> | 2022-06-30 12:07:35 +0300 |
| commit | 52c08c841ab534f32e8ea489b0668421826987d6 (patch) | |
| tree | 70bc727483800fa284509a22dbb4fa16679a5b1d /3-build-binutils.sh | |
| parent | f53cca086dece774d099a5ef9186e5b77c726429 (diff) | |
Use /bin/bash, fix string comparison
Diffstat (limited to '3-build-binutils.sh')
| -rw-r--r-- | 3-build-binutils.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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 |
