diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6bd8825e0f6b0ce0f7114a1508246b2bc3a7a162..738d4505251c4b2e185184286302d0b9177bd706 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -17,7 +17,7 @@ All notable changes to this project will be documented in this file.
 ### Fixed
 - Option NO_POSITION was untested
 - Regression: Examples code compilation was broken on OSX (Affect only 0.5.1)
-              (Internal: Added OSX examples testing in the release pipeline)
+              (Internal: Added OSX examples compilarion/running test in the release pipeline)
 - gray_scott example code (variable not initialized)
 
 
diff --git a/example/Numerics/PSE/1_Derivative_approx_1D_mp/Makefile b/example/Numerics/PSE/1_Derivative_approx_1D_mp/Makefile
index a818248abc7a450223ffb9bb44b48de071159be3..a89794a539aa80a4703f3d8a138b3eff72242635 100644
--- a/example/Numerics/PSE/1_Derivative_approx_1D_mp/Makefile
+++ b/example/Numerics/PSE/1_Derivative_approx_1D_mp/Makefile
@@ -18,7 +18,7 @@ OBJ_128 = main_float128.o
 #all: pse_1d_128
 
 run: #all
-	source $$HOME/openfpm_vars;# ./pse_1d_128
+#	source $$HOME/openfpm_vars;# ./pse_1d_128
 
 #.PHONY: clean all run
 
diff --git a/example/Vector/6_complex_usage/Makefile b/example/Vector/6_complex_usage/Makefile
index 786151407b5321fa803b661f140aaa0afbf7559b..cbd0c9e992d31808b4fee0b044fd20c3ea7d9262 100644
--- a/example/Vector/6_complex_usage/Makefile
+++ b/example/Vector/6_complex_usage/Makefile
@@ -14,7 +14,7 @@ all: complex_use
 complex_use: $(OBJ_DORD)
 	$(CC) -o $@ $^ $(CFLAGS) $(LIBS_PATH) $(LIBS)
 
-run: all_test
+run: all
 	source $$HOME/openfpm_vars; mpirun -np 3 ./complex_use
 
 .PHONY: clean all run all_test on_test