Skip to content

Commit

Permalink
LD_LIBRARY_PATH is overwritten in check-examples
Browse files Browse the repository at this point in the history
If u have an LD_LIBRARY_PATH set in the shell when you
try to run 'make check-examples-libshogun' the LD_LIBRARY_PATH
will be overwritten by the location of the libshogun.so instead
of just prepending that path to the already set LD_LIBRARY_PATHs
  • Loading branch information
vigsterkr committed Jul 20, 2012
1 parent d69d803 commit 69d7578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Makefile.template
Expand Up @@ -330,7 +330,7 @@ check-examples-libshogun:
LIB_PATH="$(DESTDIR)$(LIBDIR)" \
INC_PATH="$(DESTDIR)$(INCDIR)" \
LIBS="$(LINKFLAGS) -lshogun" \
$(LIBRARY_PATH)=$(DESTDIR)$(LIBDIR) \
$(LIBRARY_PATH)=$(DESTDIR)$(LIBDIR):$$$(LIBRARY_PATH) \
INCLUDES="$(INCLUDES)" \
MAKE="$(MAKE)" ./check.sh

Expand Down

0 comments on commit 69d7578

Please sign in to comment.