Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Rob Latham
mpich-CVS
Commits
b0e34f52
Commit
b0e34f52
authored
Sep 26, 2007
by
thakur
Browse files
more lib paths for totalview
parent
2f55ab1c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/pm/mpd/configure.in
View file @
b0e34f52
...
...
@@ -111,13 +111,20 @@ if test -z "$PYTHON" ; then ## user did not give us a python; find one
fi
if test "$enable_totalview" = "yes" ; then
AC_MSG_CHECKING([that $pypgm has development tools for totalview])
if test -f /usr/lib/$pypgm/config/Makefile ; then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
continue
fi
AC_MSG_CHECKING([that $pypgm has development tools for totalview])
has_python_sdk=no
for python_homedir in /usr/lib64 /usr/lib32 /usr/lib ; do
if test -f $python_homedir/$pypgm/config/Makefile ; then
has_python_sdk=yes
break
fi
done
if test "$has_python_sdk" = "yes" ; then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
continue
fi
fi
PYTHON="$pypgm"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment