From 73f31da836f114a715daf68f92b348d600d61c91 Mon Sep 17 00:00:00 2001
From: joost <joost@cnoc.nl>
Date: Sat, 3 Jan 2009 17:27:47 +0000
Subject: [PATCH]  * Use a single = to compare string values

git-svn-id: trunk@12490 -
---
 compiler/utils/samplecfg | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compiler/utils/samplecfg b/compiler/utils/samplecfg
index 35dbaedcdb..98de0ec180 100644
--- a/compiler/utils/samplecfg
+++ b/compiler/utils/samplecfg
@@ -86,7 +86,7 @@ fi
 #
 
 # When the local FP IDE configuration is used, check if the directory exists
-if [ $fpcfgfile == "$HOME"/.fp/fp.cfg -a ! -d "$HOME"/.fp ] ; then
+if [ $fpcfgfile = "$HOME"/.fp/fp.cfg -a ! -d "$HOME"/.fp ] ; then
   echo Directory $HOME/.fp did not exist, attempting to create it now
   mkdir "$HOME"/.fp >/dev/null 2>&1     
 fi