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 /4-build-gcc-stage-1.sh | |
| parent | f53cca086dece774d099a5ef9186e5b77c726429 (diff) | |
Use /bin/bash, fix string comparison
Diffstat (limited to '4-build-gcc-stage-1.sh')
| -rw-r--r-- | 4-build-gcc-stage-1.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/4-build-gcc-stage-1.sh b/4-build-gcc-stage-1.sh index 3774ee2..47ad0f7 100644 --- a/4-build-gcc-stage-1.sh +++ b/4-build-gcc-stage-1.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 |
