Skip to content

Commit

Permalink
Solved problem in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
joapaspe committed Mar 13, 2015
1 parent cc34cf7 commit 4ade185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PREFIX = /usr
UNAME := `uname`
LINUX_SUFIX := $(shell ( ldconfig -p 2>/dev/null | grep libmkl_core > /dev/null && echo "mkl" ) || ( ls /opt/MKL/lib/libmkl_core.so 2>&1 > /dev/null && echo "mkl" ) || ( ldconfig -p 2>/dev/null | grep libatlas > /dev/null && echo "atlas" ) || echo "")
LINUX_SUFIX := $(shell ( ldconfig -p 2>/dev/null | grep libmkl_core > /dev/null && echo "mkl" ) || ( ls /opt/MKL/lib/libmkl_core.so 2> /dev/null > /dev/null && echo "mkl" ) || ( ldconfig -p 2>/dev/null | grep libatlas > /dev/null && echo "atlas" ) || echo "")

# homebrew
ifneq ("$(wildcard /usr/local/include/lua.h)","")
Expand Down

0 comments on commit 4ade185

Please sign in to comment.