<p><b>dwj07@fsu.edu</b> 2011-10-17 09:37:14 -0600 (Mon, 17 Oct 2011)</p><p><br>
        -- BRANCH COMMIT --<br>
<br>
        Fixing a typo in converting script.<br>
<br>
        Also, changing mv to svn mv, this will allow the changes in files to be tracked in the svn repository. And it will allow an svn commit to be performed after the conversion is done.<br>
</p><hr noshade><pre><font color="gray">Modified: branches/source_renaming/convertFile.sh
===================================================================
--- branches/source_renaming/convertFile.sh        2011-10-17 15:20:45 UTC (rev 1084)
+++ branches/source_renaming/convertFile.sh        2011-10-17 15:37:14 UTC (rev 1085)
@@ -24,7 +24,7 @@
                                 echo &quot;Enter the name you would like to replace $SUBNAME with:&quot;
                                 read NEWSUBNAME
                                 ANS=&quot;y&quot;
-                        elif [ $AND == &quot;y&quot; ]; then
+                        elif [ $ANS == &quot;y&quot; ]; then
                                 ANS=&quot;y&quot;
                         fi
                 else
@@ -49,7 +49,7 @@
         NAME=`echo $FILE | sed &quot;s/module_/${FILEPREFIX}/g&quot;`
         MAKEFILE=`echo $FILE | sed &quot;s/module.*F/Makefile/g&quot;`
 
-        mv ${FILE} ${NAME}
+        svn mv ${FILE} ${NAME}
 
         cat $MAKEFILE | sed &quot;s/module_/$FILEPREFIX/g&quot; &gt; temp
         mv temp $MAKEFILE

</font>
</pre>