Skip to content

Commit e851879

Browse files
authored
Merge pull request #5994 from rhc54/cmr40/cleanup
Remove stale defunct tools
2 parents cd1e927 + ba6ad9f commit e851879

32 files changed

+3
-9833
lines changed

config/opal_check_pmi.m4

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -248,14 +248,12 @@ AC_DEFUN([OPAL_CHECK_PMIX],[
248248
AC_MSG_ERROR([Cannot continue])])
249249
250250
AC_MSG_CHECKING([if user requested internal PMIx support($with_pmix)])
251-
opal_prun_happy=no
252251
opal_external_pmix_happy=no
253252
opal_external_have_pmix1=0
254253
255254
AS_IF([test "$with_pmix" = "internal"],
256255
[AC_MSG_RESULT([yes])
257256
opal_external_pmix_happy=no
258-
opal_prun_happy=yes
259257
opal_external_pmix_version=internal],
260258
261259
[AC_MSG_RESULT([no])
@@ -362,7 +360,6 @@ AC_DEFUN([OPAL_CHECK_PMIX],[
362360
[AC_MSG_RESULT([found])
363361
opal_external_pmix_version=2x
364362
opal_external_pmix_version_found=1
365-
opal_prun_happy=yes
366363
opal_external_pmix_happy=yes],
367364
[AC_MSG_RESULT([not found])])])
368365
@@ -422,7 +419,6 @@ AC_DEFUN([OPAL_CHECK_PMIX],[
422419
423420
AC_DEFINE_UNQUOTED([OPAL_PMIX_V1],[$opal_external_have_pmix1],
424421
[Whether the external PMIx library is v1])
425-
AM_CONDITIONAL([OPAL_WANT_PRUN], [test "$opal_prun_happy" = "yes"])
426422
427423
AS_IF([test "$opal_external_pmix_happy" = "yes"],
428424
[AS_IF([test "$opal_external_pmix_version" = "1x"],

config/orte_config_files.m4

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,8 @@ AC_DEFUN([ORTE_CONFIG_FILES],[
2525
orte/tools/wrappers/Makefile
2626
orte/tools/wrappers/ortecc-wrapper-data.txt
2727
orte/tools/wrappers/orte.pc
28-
orte/tools/orte-ps/Makefile
2928
orte/tools/orte-clean/Makefile
30-
orte/tools/orte-top/Makefile
3129
orte/tools/orte-info/Makefile
3230
orte/tools/orte-server/Makefile
33-
orte/tools/orte-dvm/Makefile
34-
orte/tools/ompi-prun/Makefile
3531
])
3632
])

ompi/mca/rte/orte/Makefile.am

Lines changed: 2 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (c) 2012 Los Alamos National Security, LLC.
33
# All rights reserved.
44
# Copyright (c) 2014 Cisco Systems, Inc. All rights reserved.
5-
# Copyright (c) 2016-2017 Intel, Inc. All rights reserved.
5+
# Copyright (c) 2016-2018 Intel, Inc. All rights reserved.
66
# $COPYRIGHT$
77
#
88
# Additional copyrights may follow
@@ -28,38 +28,22 @@ libmca_rte_orte_la_SOURCES =$(sources) $(headers)
2828
libmca_rte_orte_la_LDFLAGS = -module -avoid-version
2929
libmca_rte_orte_la_LIBADD = $(top_builddir)/orte/lib@[email protected]
3030

31-
man_pages = mpirun.1 mpiexec.1 ompi-ps.1 ompi-clean.1 ompi-top.1 ompi-server.1
32-
33-
if OPAL_WANT_PRUN
34-
if WANT_INSTALL_HEADERS
35-
man_pages += ompi-dvm.1
36-
endif
37-
endif
31+
man_pages = mpirun.1 mpiexec.1 ompi-clean.1 ompi-server.1
3832

3933
if OPAL_INSTALL_BINARIES
4034
nodist_man_MANS = $(man_pages)
4135

4236
install-exec-hook:
4337
(cd $(DESTDIR)$(bindir); rm -f mpirun$(EXEEXT); $(LN_S) orterun$(EXEEXT) mpirun$(EXEEXT))
4438
(cd $(DESTDIR)$(bindir); rm -f mpiexec$(EXEEXT); $(LN_S) orterun$(EXEEXT) mpiexec$(EXEEXT))
45-
(cd $(DESTDIR)$(bindir); rm -f ompi-ps$(EXEEXT); $(LN_S) orte-ps$(EXEEXT) ompi-ps$(EXEEXT))
4639
(cd $(DESTDIR)$(bindir); rm -f ompi-clean$(EXEEXT); $(LN_S) orte-clean$(EXEEXT) ompi-clean$(EXEEXT))
47-
(cd $(DESTDIR)$(bindir); rm -f ompi-top$(EXEEXT); $(LN_S) orte-top$(EXEEXT) ompi-top$(EXEEXT))
4840
(cd $(DESTDIR)$(bindir); rm -f ompi-server$(EXEEXT); $(LN_S) orte-server$(EXEEXT) ompi-server$(EXEEXT))
49-
if OPAL_WANT_PRUN
50-
(cd $(DESTDIR)$(bindir); rm -f ompi-dvm$(EXEEXT); $(LN_S) orte-dvm$(EXEEXT) ompi-dvm$(EXEEXT))
51-
endif
5241

5342
uninstall-local:
5443
rm -f $(DESTDIR)$(bindir)/mpirun$(EXEEXT) \
5544
$(DESTDIR)$(bindir)/mpiexec$(EXEEXT) \
56-
$(DESTDIR)$(bindir)/ompi-ps$(EXEEXT) \
5745
$(DESTDIR)$(bindir)/ompi-clean$(EXEEXT) \
58-
$(DESTDIR)$(bindir)/ompi-top$(EXEEXT) \
5946
$(DESTDIR)$(bindir)/ompi-server$(EXEEXT)
60-
if OPAL_WANT_PRUN
61-
rm -f $(DESTDIR)$(bindir)/ompi-dvm$(EXEEXT)
62-
endif
6347

6448
endif # OPAL_INSTALL_BINARIES
6549

@@ -72,34 +56,17 @@ mpirun.1: $(top_builddir)/orte/tools/orterun/orterun.1
7256
mpiexec.1: $(top_builddir)/orte/tools/orterun/orterun.1
7357
cp -f $(top_builddir)/orte/tools/orterun/orterun.1 mpiexec.1
7458

75-
$(top_builddir)/orte/tools/orte-ps/orte-ps.1:
76-
(cd $(top_builddir)/orte/tools/orte-ps && $(MAKE) $(AM_MAKEFLAGS) orte-ps.1)
77-
78-
ompi-ps.1: $(top_builddir)/orte/tools/orte-ps/orte-ps.1
79-
cp -f $(top_builddir)/orte/tools/orte-ps/orte-ps.1 ompi-ps.1
80-
8159
$(top_builddir)/orte/tools/orte-clean/orte-clean.1:
8260
(cd $(top_builddir)/orte/tools/orte-clean && $(MAKE) $(AM_MAKEFLAGS) orte-clean.1)
8361

8462
ompi-clean.1: $(top_builddir)/orte/tools/orte-clean/orte-clean.1
8563
cp -f $(top_builddir)/orte/tools/orte-clean/orte-clean.1 ompi-clean.1
8664

87-
$(top_builddir)/orte/tools/orte-top/orte-top.1:
88-
(cd $(top_builddir)/orte/tools/orte-top && $(MAKE) $(AM_MAKEFLAGS) orte-top.1)
89-
90-
ompi-top.1: $(top_builddir)/orte/tools/orte-top/orte-top.1
91-
cp -f $(top_builddir)/orte/tools/orte-top/orte-top.1 ompi-top.1
92-
9365
$(top_builddir)/orte/tools/orte-server/orte-server.1:
9466
(cd $(top_builddir)/orte/tools/orte-server && $(MAKE) $(AM_MAKEFLAGS) orte-server.1)
9567

9668
ompi-server.1: $(top_builddir)/orte/tools/orte-server/orte-server.1
9769
cp -f $(top_builddir)/orte/tools/orte-server/orte-server.1 ompi-server.1
9870

99-
if OPAL_WANT_PRUN
100-
ompi-dvm.1: $(top_builddir)/orte/tools/orte-dvm/orte-dvm.1
101-
cp -f $(top_builddir)/orte/tools/orte-dvm/orte-dvm.1 ompi-dvm.1
102-
endif
103-
10471
clean-local:
10572
rm -f $(man_pages)

orte/mca/errmgr/dvm/Makefile.am

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)