From 5d4bcb5bf2933b1330676bdfa358f485fcfeb400 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sun, 3 Sep 2006 18:51:50 +0000 Subject: [PATCH] Fix == -> = --- bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index 2f74909..4edf039 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -17,10 +17,10 @@ for i in $REQUIRED; do echo $i missing exit 1 fi - if [ $i == "core" ]; then + if [ $i = "core" ]; then ln -sf $path/source/core include/msp/core ln -sf $path/source/time include/msp/time - elif [ $i == "misc" ]; then + elif [ $i = "misc" ]; then ln -sf $path/source/*.h include/msp else ln -sf $path/source include/msp/$i -- 2.43.0