Browse Source

Fixed build script for Mac OS X.

Wei Tjong Yao 12 years ago
parent
commit
2b024be205
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cmake_macosx.sh

+ 1 - 1
cmake_macosx.sh

@@ -29,7 +29,7 @@ else
     # Create symbolic links in the respective Xcode configuration subdir to allow running Urho3D within the xcode itself
     cd Build/Tools/Urho3D
     for conf in Debug RelWithDebInfo Release; do
-        if [ ! -d $conf ] then mkdir $conf; fi
+        if [ ! -d $conf ]; then mkdir $conf; fi
         for dir in CoreData Data; do
             cmake -E create_symlink ../../../../Bin/$dir $conf/$dir
         done