Skip to content

Commit

Permalink
fixed environment variable for Darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
maxime-tournier committed Dec 3, 2014
1 parent cbb5bfe commit 8d20fb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fakenect/fakenect.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export FAKENECT_PATH=$1
# set link path (LD_LIBRARY_PATH for Linux, DYLIB_LIBRARY_PATH for OS X)
if [ `uname` == "Darwin" ];
then
export DYLD_LIBRARY_PATH="@CMAKE_INSTALL_PREFIX@/@PROJECT_LIBRARY_INSTALL_DIR@/fakenect/:${LD_LIBRARY_PATH}"
export DYLD_LIBRARY_PATH="@CMAKE_INSTALL_PREFIX@/@PROJECT_LIBRARY_INSTALL_DIR@/fakenect/:${DYLD_LIBRARY_PATH}"
else
export LD_LIBRARY_PATH="@CMAKE_INSTALL_PREFIX@/@PROJECT_LIBRARY_INSTALL_DIR@/fakenect/:${LD_LIBRARY_PATH}"
fi
Expand Down

0 comments on commit 8d20fb0

Please sign in to comment.