Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Rob Latham
MPICH-BlueGene
Commits
b9be7a41
Commit
b9be7a41
authored
Aug 31, 2010
by
Pavan Balaji
Browse files
[svn-r7140] Symlink mpirun to mpiexec. Fixes ticket #956.
parent
41d9bb2f
Changes
2
Hide whitespace changes
Inline
Side-by-side
configure.in
View file @
b9be7a41
...
@@ -6211,6 +6211,7 @@ AC_OUTPUT_COMMANDS([if grep 'dependencies:' Makefile >/dev/null 2>&1 ; then
...
@@ -6211,6 +6211,7 @@ AC_OUTPUT_COMMANDS([if grep 'dependencies:' Makefile >/dev/null 2>&1 ; then
fi])
fi])
AC_OUTPUT_COMMANDS([chmod +x doc/mansrc/createhtmlindex])
AC_OUTPUT_COMMANDS([chmod +x doc/mansrc/createhtmlindex])
AC_OUTPUT_COMMANDS([ln -f -s mpiexec bin/mpirun])
dnl
dnl
dnl If we rerun configure, place a file in the lib directory with the
dnl If we rerun configure, place a file in the lib directory with the
...
...
src/pm/hydra/Makefile.am
View file @
b9be7a41
...
@@ -31,6 +31,15 @@ SUBDIRS = ${external_subdirs} .
...
@@ -31,6 +31,15 @@ SUBDIRS = ${external_subdirs} .
mpich2-build-install
:
install
mpich2-build-install
:
install
mpich2-build-uninstall
:
uninstall
mpich2-build-uninstall
:
uninstall
# Provide an alias for mpirun to support tools that assume that
# mpiexec is called mpirun
install-exec-local
:
if
[
-x
${DESTDIR}${bindir}
/mpiexec
]
;
then
\
cd
${DESTDIR}${bindir}
&&
ln
-f
-s
mpiexec mpirun
;
fi
uninstall-local
:
rm
-f
${DESTDIR}${bindir}
/mpirun
# A special alternate installation target when using multiple process managers
# A special alternate installation target when using multiple process managers
install-alt
:
$(bin_PROGRAMS)
install-alt
:
$(bin_PROGRAMS)
@
if
[
!
-d
$(DESTDIR)${bindir}
]
;
then
\
@
if
[
!
-d
$(DESTDIR)${bindir}
]
;
then
\
...
...
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