From 0644627bef4991d747ab8495693d35442bf70cb6 Mon Sep 17 00:00:00 2001 From: Joerg Sonnenberger Date: Thu, 4 Jul 2013 15:11:10 +0000 Subject: [PATCH] Fix bashism. llvm-svn: 185646 --- libcxx/test/testit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcxx/test/testit b/libcxx/test/testit index a742364..18b0814 100755 --- a/libcxx/test/testit +++ b/libcxx/test/testit @@ -12,7 +12,7 @@ currentpath=`pwd` origpath=$currentpath currentdir=`basename $currentpath` while [ $currentdir != "test" ]; do - if [ $currentdir == "/" ] + if [ $currentdir = "/" ] then echo "current directory must be in or under \"test\"." exit 1 -- 2.7.4