We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4112393 + bb54e03 commit 1a31e22Copy full SHA for 1a31e22
configure.ac
@@ -36,7 +36,11 @@ AC_ARG_WITH([mesos_build_dir],
36
37
if test -d "$mesos"; then
38
MESOS_CPPFLAGS="-I${mesos}/include"
39
- MESOS_LDFLAGS="-L${mesos}/lib64 -lmesos -lglog -lprotobuf"
+ if test -d "${mesos}/lib"; then
40
+ MESOS_LDFLAGS="-L${mesos}/lib -lmesos -lglog -lprotobuf"
41
+ else
42
+ MESOS_LDFLAGS="-L${mesos}/lib64 -lmesos -lglog -lprotobuf"
43
+ fi
44
else
45
46
if test -d "$mesos_root"; then
0 commit comments