From 4891f7c5abee1608d3a915c955d48081621d3be0 Mon Sep 17 00:00:00 2001 From: Philippe Renon Date: Tue, 15 Sep 2015 22:13:30 +0200 Subject: [PATCH] LP-30 fixed DYLD_LIBRARY_PATH used when building osgearth on osx --- make/3rdparty/osgearth/osgearth.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/3rdparty/osgearth/osgearth.mk b/make/3rdparty/osgearth/osgearth.mk index c6383c4e2..c880a365a 100644 --- a/make/3rdparty/osgearth/osgearth.mk +++ b/make/3rdparty/osgearth/osgearth.mk @@ -259,7 +259,7 @@ osgearth: $(V1) ( $(CD) $(OSGEARTH_BUILD_DIR) && \ PATH=$(OSGEARTH_BUILD_PATH) && \ LD_LIBRARY_PATH=$(OSGEARTH_LIB_PATH) && \ - export DYLD_LIBRARY_PATH=$(OSG_LIB_PATH) && \ + export DYLD_LIBRARY_PATH=$(OSGEARTH_LIB_PATH) && \ unset OSG_NOTIFY_LEVEL && \ $(CMAKE) -G $(OSGEARTH_CMAKE_GENERATOR) -DCMAKE_BUILD_TYPE=$(OSGEARTH_BUILD_CONF) \ -DOSGEARTH_USE_QT=ON \