diff --git a/Framework/API/CMakeLists.txt b/Framework/API/CMakeLists.txt
index df51886dd9783bf3abe41979b7a3639e1130eaf0..a717a8b0f1c3b2bc549fc91bc6b380f8ef179ce8 100644
--- a/Framework/API/CMakeLists.txt
+++ b/Framework/API/CMakeLists.txt
@@ -491,7 +491,7 @@ set_target_properties ( API PROPERTIES OUTPUT_NAME MantidAPI
                                        COMPILE_DEFINITIONS IN_MANTID_API )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-   #  set_target_properties ( API PROPERTIES INSTALL_RPATH "@loader_path/../MacOS")
+  set_target_properties ( API PROPERTIES INSTALL_RPATH "@loader_path/../MacOS")
 endif ()
 
 # Add to the 'Framework' group in VS
diff --git a/Framework/Algorithms/CMakeLists.txt b/Framework/Algorithms/CMakeLists.txt
index 7a70d41f012edacaafed00e8fee21bbe18e5afea..e52f5655f97c19a9c312f9f099cb53dff48365a1 100644
--- a/Framework/Algorithms/CMakeLists.txt
+++ b/Framework/Algorithms/CMakeLists.txt
@@ -985,7 +985,7 @@ set_target_properties ( Algorithms PROPERTIES OUTPUT_NAME MantidAlgorithms
 						           COMPILE_DEFINITIONS "IN_MANTID_ALGORITHMS" )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-   #  set_target_properties ( Algorithms PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
+  set_target_properties ( Algorithms PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
 endif ()
 
 # Add to the 'Framework' group in VS
diff --git a/Framework/Beamline/CMakeLists.txt b/Framework/Beamline/CMakeLists.txt
index f073a1604d1923e6e4413c55be89fb27749e844e..7bf0fb3636cbc9f32740168dc2630109931412cd 100644
--- a/Framework/Beamline/CMakeLists.txt
+++ b/Framework/Beamline/CMakeLists.txt
@@ -30,9 +30,9 @@ endif(UNITY_BUILD)
 # Add the target for this directory
 add_library ( Beamline ${SRC_FILES} ${INC_FILES} )
 # Set the name of the generated library
-#set_target_properties ( Beamline PROPERTIES OUTPUT_NAME MantidBeamline
-#                                 COMPILE_DEFINITIONS IN_MANTID_BEAMLINE
-#                                 INSTALL_RPATH "@loader_path/../MacOS" )
+set_target_properties ( Beamline PROPERTIES OUTPUT_NAME MantidBeamline
+                                 COMPILE_DEFINITIONS IN_MANTID_BEAMLINE
+                                 INSTALL_RPATH "@loader_path/../MacOS" )
 target_include_directories( Beamline SYSTEM PUBLIC ${EIGEN3_INCLUDE_DIR} )
 
 # Add to the 'Framework' group in VS
diff --git a/Framework/Crystal/CMakeLists.txt b/Framework/Crystal/CMakeLists.txt
index 11d8ce52be2102259f527d50e7e65672ea1bd372..2564cf192e6e37856671d93016a2dbc8ffb82e1a 100644
--- a/Framework/Crystal/CMakeLists.txt
+++ b/Framework/Crystal/CMakeLists.txt
@@ -231,8 +231,8 @@ endif()
 # Add the target for this directory
 add_library ( Crystal ${SRC_FILES} ${INC_FILES})
 # Set the name of the generated library
-# set_target_properties ( Crystal PROPERTIES OUTPUT_NAME MantidCrystal 
-#                                           INSTALL_RPATH "@loader_path/../Contents/MacOS/")
+set_target_properties ( Crystal PROPERTIES OUTPUT_NAME MantidCrystal 
+                                           INSTALL_RPATH "@loader_path/../Contents/MacOS/")
 # Add to the 'Framework' group in VS
 set_property ( TARGET Crystal PROPERTY FOLDER "MantidFramework" )
 
diff --git a/Framework/CurveFitting/CMakeLists.txt b/Framework/CurveFitting/CMakeLists.txt
index f92cb5bffa95b261c66e5720730a142ef4bada62..47cb626b622393777c73dfc5a8448b317576d333 100644
--- a/Framework/CurveFitting/CMakeLists.txt
+++ b/Framework/CurveFitting/CMakeLists.txt
@@ -482,7 +482,7 @@ set_target_properties ( CurveFitting PROPERTIES OUTPUT_NAME MantidCurveFitting
                                      COMPILE_DEFINITIONS IN_MANTID_CURVEFITTING )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties ( CurveFitting PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
+  set_target_properties ( CurveFitting PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
 endif () 
 
 # Add to the 'Framework' group in VS
diff --git a/Framework/DataHandling/CMakeLists.txt b/Framework/DataHandling/CMakeLists.txt
index 86aaf7715df8f29ee17aa850c099523b35038211..9f54094835435148f87c08681baecf1382004982 100644
--- a/Framework/DataHandling/CMakeLists.txt
+++ b/Framework/DataHandling/CMakeLists.txt
@@ -525,7 +525,7 @@ set_target_properties ( DataHandling PROPERTIES OUTPUT_NAME MantidDataHandling
                         COMPILE_DEFINITIONS "IN_MANTID_DATAHANDLING")
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties ( DataHandling PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
+  set_target_properties ( DataHandling PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
 endif ()
 
 # Add to the 'Framework' group in VS
diff --git a/Framework/DataObjects/CMakeLists.txt b/Framework/DataObjects/CMakeLists.txt
index 2a4bcff10e992dfa3708752a0ead4b6ad88ded5f..b9a065d1afe30590005f047b1be54ceff64adc68 100644
--- a/Framework/DataObjects/CMakeLists.txt
+++ b/Framework/DataObjects/CMakeLists.txt
@@ -213,7 +213,7 @@ set_target_properties ( DataObjects PROPERTIES OUTPUT_NAME MantidDataObjects
                                                COMPILE_DEFINITIONS IN_MANTID_DATAOBJECTS )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties ( DataObjects PROPERTIES INSTALL_RPATH "@loader_path/../MacOS")
+  set_target_properties ( DataObjects PROPERTIES INSTALL_RPATH "@loader_path/../MacOS")
 endif ()
 
 # Intensive use of templated libaries can cause large objects to be generated. These require
diff --git a/Framework/Geometry/CMakeLists.txt b/Framework/Geometry/CMakeLists.txt
index 3c5c0fc0ce2f30ac980583f4b0c579ae0af394fa..4a7066dd41d6d509fde3489d139802c06a06d451 100644
--- a/Framework/Geometry/CMakeLists.txt
+++ b/Framework/Geometry/CMakeLists.txt
@@ -465,7 +465,7 @@ set_target_properties ( Geometry PROPERTIES OUTPUT_NAME MantidGeometry
                                             COMPILE_DEFINITIONS IN_MANTID_GEOMETRY )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties ( Geometry PROPERTIES INSTALL_RPATH "@loader_path/../MacOS")
+  set_target_properties ( Geometry PROPERTIES INSTALL_RPATH "@loader_path/../MacOS")
 endif ()
 
 if (ENABLE_OPENCASCADE)
diff --git a/Framework/HistogramData/CMakeLists.txt b/Framework/HistogramData/CMakeLists.txt
index 937d48e90a6d99b1536e16fabbe31be6942236e8..77ebc4fccd837f0696b2d7927ddb0bfb11c66572 100644
--- a/Framework/HistogramData/CMakeLists.txt
+++ b/Framework/HistogramData/CMakeLists.txt
@@ -107,7 +107,7 @@ set_target_properties ( HistogramData PROPERTIES OUTPUT_NAME MantidHistogramData
   COMPILE_DEFINITIONS IN_MANTID_HISTOGRAMDATA )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties ( HistogramData PROPERTIES INSTALL_RPATH "@loader_path/../MacOS")
+  set_target_properties ( HistogramData PROPERTIES INSTALL_RPATH "@loader_path/../MacOS")
 endif ()
 
 # Add to the 'Framework' group in VS
diff --git a/Framework/ICat/CMakeLists.txt b/Framework/ICat/CMakeLists.txt
index 17bf4eab378fd12f5b38316ea65b3a8ac66336a5..af769ecacdaad6eee62d99609807fff02af7889f 100644
--- a/Framework/ICat/CMakeLists.txt
+++ b/Framework/ICat/CMakeLists.txt
@@ -89,7 +89,7 @@ set_target_properties ( ICat PROPERTIES OUTPUT_NAME MantidICat
                                         COMPILE_DEFINITIONS IN_MANTID_ICAT )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties ( ICat PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
+  set_target_properties ( ICat PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
 endif () 
 
 # Add to the 'Framework' group in VS
diff --git a/Framework/Indexing/CMakeLists.txt b/Framework/Indexing/CMakeLists.txt
index d51256f04f2f2a550e6c1e2c555bb389dfb85228..b3d274a33d63b6a6b30f0c1f0f9e465b38956e95 100644
--- a/Framework/Indexing/CMakeLists.txt
+++ b/Framework/Indexing/CMakeLists.txt
@@ -61,7 +61,7 @@ set_target_properties ( Indexing PROPERTIES OUTPUT_NAME MantidIndexing
   COMPILE_DEFINITIONS IN_MANTID_INDEXING )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties ( Indexing PROPERTIES INSTALL_RPATH "@loader_path/../MacOS")
+  set_target_properties ( Indexing PROPERTIES INSTALL_RPATH "@loader_path/../MacOS")
 endif ()
 
 # Add to the 'Framework' group in VS
diff --git a/Framework/Kernel/CMakeLists.txt b/Framework/Kernel/CMakeLists.txt
index c457bac2a9343b661fe1b8e4094aa1d28e4a7ed0..fb943e2e6ae7c32487429b88e16481bb6f3afa49 100644
--- a/Framework/Kernel/CMakeLists.txt
+++ b/Framework/Kernel/CMakeLists.txt
@@ -481,7 +481,7 @@ set_target_properties ( Kernel PROPERTIES OUTPUT_NAME MantidKernel
 target_include_directories ( Kernel SYSTEM PUBLIC ${EIGEN3_INCLUDE_DIR} PRIVATE ${GSL_INCLUDE_DIR} ${OPENSSL_INCLUDE_DIR})
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties ( Kernel PROPERTIES INSTALL_RPATH "@loader_path/../MacOS")
+  set_target_properties ( Kernel PROPERTIES INSTALL_RPATH "@loader_path/../MacOS")
 endif ()
 
 # Add to the 'Framework' group in VS
diff --git a/Framework/LiveData/CMakeLists.txt b/Framework/LiveData/CMakeLists.txt
index 4a7d8d544aed1b538c97fbc49b4b93cd049eeba3..ad931528fea6e82bb9a0b569e6d3a0c762460542 100644
--- a/Framework/LiveData/CMakeLists.txt
+++ b/Framework/LiveData/CMakeLists.txt
@@ -102,7 +102,7 @@ add_library ( LiveData ${SRC_FILES} ${INC_FILES})
 set_target_properties ( LiveData PROPERTIES OUTPUT_NAME MantidLiveData )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties ( LiveData PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
+  set_target_properties ( LiveData PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
 endif ()
 
 # Add to the 'Framework' group in VS
diff --git a/Framework/MDAlgorithms/CMakeLists.txt b/Framework/MDAlgorithms/CMakeLists.txt
index d0afc3a4e0323cad1240fd9c1ce157863ef45171..7e36c7e37953cfa127ad625452f6891e0bb17000 100644
--- a/Framework/MDAlgorithms/CMakeLists.txt
+++ b/Framework/MDAlgorithms/CMakeLists.txt
@@ -404,7 +404,7 @@ set_target_properties ( MDAlgorithms PROPERTIES OUTPUT_NAME MantidMDAlgorithms
     COMPILE_DEFINITIONS IN_MANTID_MDALGORITHMS )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#    set_target_properties ( MDAlgorithms PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
+    set_target_properties ( MDAlgorithms PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
 endif () 
 
 # Add to the 'Framework' group in VS
diff --git a/Framework/Nexus/CMakeLists.txt b/Framework/Nexus/CMakeLists.txt
index 2409738ea9d3e6dbadaeeb35820a06db7e8024f4..b4ec93352419ee8dd2309e96477993f48fd183fe 100644
--- a/Framework/Nexus/CMakeLists.txt
+++ b/Framework/Nexus/CMakeLists.txt
@@ -29,7 +29,7 @@ set_target_properties ( Nexus PROPERTIES OUTPUT_NAME MantidNexus
                                          COMPILE_DEFINITIONS IN_MANTID_NEXUS )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties ( Nexus PROPERTIES INSTALL_RPATH "@loader_path/../MacOS" )
+  set_target_properties ( Nexus PROPERTIES INSTALL_RPATH "@loader_path/../MacOS" )
 endif () 
 
 # Add to the 'Framework' group in VS
diff --git a/Framework/Parallel/CMakeLists.txt b/Framework/Parallel/CMakeLists.txt
index 11696dfc50f5e62c1883391142878baf42c0aa83..a40bb488af84f33f16a237231c35ce5dfcb4eac9 100644
--- a/Framework/Parallel/CMakeLists.txt
+++ b/Framework/Parallel/CMakeLists.txt
@@ -38,7 +38,7 @@ set_target_properties ( Parallel PROPERTIES OUTPUT_NAME MantidParallel
   COMPILE_DEFINITIONS IN_MANTID_PARALLEL )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties ( Parallel PROPERTIES INSTALL_RPATH "@loader_path/../MacOS")
+  set_target_properties ( Parallel PROPERTIES INSTALL_RPATH "@loader_path/../MacOS")
 endif ()
 
 # Add to the 'Framework' group in VS
diff --git a/Framework/PythonInterface/mantid/_plugins/CMakeLists.txt b/Framework/PythonInterface/mantid/_plugins/CMakeLists.txt
index 4bc7e302bae904c40bf99a21d2b6fb92fc9d043b..8425cf15d05172774f4b2d2c360f500c883b91bf 100644
--- a/Framework/PythonInterface/mantid/_plugins/CMakeLists.txt
+++ b/Framework/PythonInterface/mantid/_plugins/CMakeLists.txt
@@ -65,8 +65,8 @@ target_link_libraries ( PythonCurveFittingModule LINK_PRIVATE ${TCMALLOC_LIBRARI
 
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties( PythonCurveFittingModule PROPERTIES
-#                         INSTALL_RPATH "@loader_path/../../../MacOS;@loader_path/../kernel/;@loader_path/../geometry/;@loader_path/../api/")
+  set_target_properties( PythonCurveFittingModule PROPERTIES
+                         INSTALL_RPATH "@loader_path/../../../MacOS;@loader_path/../kernel/;@loader_path/../geometry/;@loader_path/../api/")
 endif ()
 ###########################################################################
 # Installation settings
diff --git a/Framework/PythonInterface/mantid/api/CMakeLists.txt b/Framework/PythonInterface/mantid/api/CMakeLists.txt
index e9008846003da4785915e5df86bf33004adc48dc..1ae62d7b98178c4aaeac7144c052f6ccf43cb95b 100644
--- a/Framework/PythonInterface/mantid/api/CMakeLists.txt
+++ b/Framework/PythonInterface/mantid/api/CMakeLists.txt
@@ -153,7 +153,7 @@ target_link_libraries ( PythonAPIModule LINK_PRIVATE ${TCMALLOC_LIBRARIES_LINKTI
             ${Boost_LIBRARIES} )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties( PythonAPIModule PROPERTIES INSTALL_RPATH "@loader_path/../../../MacOS;@loader_path/../kernel/;@loader_path/../geometry/")
+  set_target_properties( PythonAPIModule PROPERTIES INSTALL_RPATH "@loader_path/../../../MacOS;@loader_path/../kernel/;@loader_path/../geometry/")
 endif ()
 ###########################################################################
 # Installation settings
diff --git a/Framework/PythonInterface/mantid/dataobjects/CMakeLists.txt b/Framework/PythonInterface/mantid/dataobjects/CMakeLists.txt
index 27c4fa37ede90d2e6ee5da6a984332ba228b391f..f263dfed5a7747e0382adc46a923996859576cab 100644
--- a/Framework/PythonInterface/mantid/dataobjects/CMakeLists.txt
+++ b/Framework/PythonInterface/mantid/dataobjects/CMakeLists.txt
@@ -81,8 +81,8 @@ target_link_libraries ( PythonDataObjectsModule LINK_PRIVATE ${TCMALLOC_LIBRARIE
 
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties( PythonDataObjectsModule PROPERTIES
-#                         INSTALL_RPATH "@loader_path/../../../MacOS;@loader_path/../kernel/;@loader_path/../geometry/;@loader_path/../api/")
+  set_target_properties( PythonDataObjectsModule PROPERTIES
+                         INSTALL_RPATH "@loader_path/../../../MacOS;@loader_path/../kernel/;@loader_path/../geometry/;@loader_path/../api/")
 endif ()
 ###########################################################################
 # Installation settings
diff --git a/Framework/PythonInterface/mantid/geometry/CMakeLists.txt b/Framework/PythonInterface/mantid/geometry/CMakeLists.txt
index 8134cd2040b0f2a08763c2ea7e533d3dbda69747..269d249777cc788468ee7fe2f62541d5926435b5 100644
--- a/Framework/PythonInterface/mantid/geometry/CMakeLists.txt
+++ b/Framework/PythonInterface/mantid/geometry/CMakeLists.txt
@@ -93,7 +93,7 @@ target_link_libraries ( PythonGeometryModule LINK_PRIVATE ${TCMALLOC_LIBRARIES_L
             )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties ( PythonGeometryModule PROPERTIES INSTALL_RPATH "@loader_path/../../../MacOS;@loader_path/../kernel/")
+  set_target_properties ( PythonGeometryModule PROPERTIES INSTALL_RPATH "@loader_path/../../../MacOS;@loader_path/../kernel/")
 endif ()
 
 ###########################################################################
diff --git a/Framework/PythonInterface/mantid/kernel/CMakeLists.txt b/Framework/PythonInterface/mantid/kernel/CMakeLists.txt
index c9cb9cb0fb7e15ef0a22bb91ae1038d7605dfb6c..9d7ca816920248970d2f1400c9d24cea44a366ed 100644
--- a/Framework/PythonInterface/mantid/kernel/CMakeLists.txt
+++ b/Framework/PythonInterface/mantid/kernel/CMakeLists.txt
@@ -193,7 +193,7 @@ target_link_libraries ( PythonKernelModule LINK_PRIVATE ${TCMALLOC_LIBRARIES_LIN
 			${TBB_MALLOC_LIBRARIES} )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties ( PythonKernelModule PROPERTIES INSTALL_RPATH "@loader_path/../../../MacOS")
+  set_target_properties ( PythonKernelModule PROPERTIES INSTALL_RPATH "@loader_path/../../../MacOS")
 endif ()
 
 ###########################################################################
diff --git a/Framework/RemoteAlgorithms/CMakeLists.txt b/Framework/RemoteAlgorithms/CMakeLists.txt
index a65a4958321b522973fb1a5d5e731b53966773c6..64e6979fcef9884a60d7f7f00a40b31ad36b037a 100644
--- a/Framework/RemoteAlgorithms/CMakeLists.txt
+++ b/Framework/RemoteAlgorithms/CMakeLists.txt
@@ -94,7 +94,7 @@ add_library ( RemoteAlgorithms ${SRC_FILES} ${INC_FILES})
 set_target_properties ( RemoteAlgorithms PROPERTIES OUTPUT_NAME MantidRemoteAlgorithms )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties ( RemoteAlgorithms PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
+  set_target_properties ( RemoteAlgorithms PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
 endif () 
 
 # Add to the 'Framework' group in VS
diff --git a/Framework/RemoteJobManagers/CMakeLists.txt b/Framework/RemoteJobManagers/CMakeLists.txt
index e4bce13efa36f1d26397531570b8d3d9afa2b4b0..f7ec2d3721eb7c0fdc055f1cba771c182d0610e1 100644
--- a/Framework/RemoteJobManagers/CMakeLists.txt
+++ b/Framework/RemoteJobManagers/CMakeLists.txt
@@ -42,7 +42,7 @@ add_library ( RemoteJobManagers ${SRC_FILES} ${INC_FILES})
 set_target_properties ( RemoteJobManagers PROPERTIES OUTPUT_NAME MantidRemoteJobManagers )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties ( RemoteJobManagers PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
+  set_target_properties ( RemoteJobManagers PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
 endif () 
 
 # Add to the 'Framework' group in VS
diff --git a/Framework/SINQ/CMakeLists.txt b/Framework/SINQ/CMakeLists.txt
index d944af895001f64d59e74094b2ca0eca98189f53..1a85a2dd81167fe399d0f0e59b8b5b24e6bd481a 100644
--- a/Framework/SINQ/CMakeLists.txt
+++ b/Framework/SINQ/CMakeLists.txt
@@ -145,7 +145,7 @@ set_target_properties ( SINQ PROPERTIES OUTPUT_NAME MantidSINQ
                                         COMPILE_DEFINITIONS "IN_MANTID_SINQ" )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties ( SINQ PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
+  set_target_properties ( SINQ PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
 endif () 
 
 # Add to the 'Framework' group in VS
diff --git a/Framework/ScriptRepository/CMakeLists.txt b/Framework/ScriptRepository/CMakeLists.txt
index 0fc6d0b5da28d805c7beecbbcbded3080174329e..c2bc2704c9296569fedb1b0b78e4eacb25456c77 100644
--- a/Framework/ScriptRepository/CMakeLists.txt
+++ b/Framework/ScriptRepository/CMakeLists.txt
@@ -27,7 +27,7 @@ set_target_properties ( ScriptRepository PROPERTIES OUTPUT_NAME MantidScriptRepo
                         COMPILE_DEFINITIONS IN_MANTID_SCRIPTREPO )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties ( ScriptRepository PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
+  set_target_properties ( ScriptRepository PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
 endif ()
 
 set_property (TARGET ScriptRepository PROPERTY FOLDER "MantidFramework")
diff --git a/Framework/WorkflowAlgorithms/CMakeLists.txt b/Framework/WorkflowAlgorithms/CMakeLists.txt
index f85655d1472d340826dd428b9d1dbd3a4f73c2f0..4f1403b1fc5c37a7f6e61ac11665939c8ebc34eb 100644
--- a/Framework/WorkflowAlgorithms/CMakeLists.txt
+++ b/Framework/WorkflowAlgorithms/CMakeLists.txt
@@ -122,7 +122,7 @@ add_library ( WorkflowAlgorithms ${SRC_FILES} ${INC_FILES})
 set_target_properties ( WorkflowAlgorithms PROPERTIES OUTPUT_NAME MantidWorkflowAlgorithms )
 
 if (OSX_VERSION VERSION_GREATER 10.8)
-#  set_target_properties ( WorkflowAlgorithms PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
+  set_target_properties ( WorkflowAlgorithms PROPERTIES INSTALL_RPATH "@loader_path/../Contents/MacOS")
 endif ()
 
 # Add to the 'Framework' group in VS