Skip to content

Commit 98ad78e

Browse files
Merge pull request #5883 from ggouaillardet/topic/pmix_ext
pmix/ext: misc fixes
2 parents 32682aa + ca9009e commit 98ad78e

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

opal/mca/pmix/ext2x/Makefile.am

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#
22
# Copyright (c) 2014-2017 Intel, Inc. All rights reserved.
33
# Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
4-
# Copyright (c) 2015 Research Organization for Information Science
5-
# and Technology (RIST). All rights reserved.
4+
# Copyright (c) 2015-2018 Research Organization for Information Science
5+
# and Technology (RIST). All rights reserved.
66
# Copyright (c) 2017 IBM Corporation. All rights reserved.
77
# $COPYRIGHT$
88
#
@@ -38,15 +38,15 @@ endif
3838

3939
mcacomponentdir = $(opallibdir)
4040
mcacomponent_LTLIBRARIES = $(component_install)
41-
mca_pmix_ext2x_la_SOURCES = $(sources)
41+
mca_pmix_ext2x_la_SOURCES = $(sources) $(headers)
4242
mca_pmix_ext2x_la_CFLAGS = $(opal_pmix_ext2x_CFLAGS)
4343
mca_pmix_ext2x_la_CPPFLAGS =$(opal_pmix_ext2x_CPPFLAGS)
4444
mca_pmix_ext2x_la_LDFLAGS = -module -avoid-version $(opal_pmix_ext2x_LDFLAGS)
4545
mca_pmix_ext2x_la_LIBADD = $(top_builddir)/opal/lib@OPAL_LIB_PREFIX@open-pal.la \
4646
$(opal_pmix_ext2x_LIBS)
4747

4848
noinst_LTLIBRARIES = $(component_noinst)
49-
libmca_pmix_ext2x_la_SOURCES =$(sources)
49+
libmca_pmix_ext2x_la_SOURCES =$(sources) $(headers)
5050
libmca_pmix_ext2x_la_CFLAGS = $(opal_pmix_ext2x_CFLAGS)
5151
libmca_pmix_ext2x_la_CPPFLAGS = $(opal_pmix_ext2x_CPPFLAGS)
5252
libmca_pmix_ext2x_la_LDFLAGS = -module -avoid-version $(opal_pmix_ext2x_LDFLAGS)

opal/mca/pmix/ext3x/Makefile.am

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dist_opaldata_DATA = help-pmix-ext3x.txt
1616
sources = \
1717
ext3x_local.c
1818

19-
nodist_headers = \
19+
headers = \
2020
ext3x.h
2121

2222
nodist_sources = \
@@ -40,7 +40,7 @@ endif
4040

4141
mcacomponentdir = $(opallibdir)
4242
mcacomponent_LTLIBRARIES = $(component_install)
43-
mca_pmix_ext3x_la_SOURCES = $(sources)
43+
mca_pmix_ext3x_la_SOURCES = $(sources) $(headers)
4444
nodist_mca_pmix_ext3x_la_SOURCES = $(nodist_sources)
4545
mca_pmix_ext3x_la_CFLAGS = $(opal_pmix_ext3x_CFLAGS)
4646
mca_pmix_ext3x_la_CPPFLAGS =$(opal_pmix_ext3x_CPPFLAGS)
@@ -49,12 +49,12 @@ mca_pmix_ext3x_la_LIBADD = $(top_builddir)/opal/lib@OPAL_LIB_PREFIX@open-pal.la
4949
$(opal_pmix_ext3x_LIBS)
5050

5151
noinst_LTLIBRARIES = $(component_noinst)
52-
libmca_pmix_ext3x_la_SOURCES =$(sources)
52+
libmca_pmix_ext3x_la_SOURCES =$(sources) $(headers)
5353
nodist_libmca_pmix_ext3x_la_SOURCES = $(nodist_sources)
5454
libmca_pmix_ext3x_la_CFLAGS = $(opal_pmix_ext3x_CFLAGS)
5555
libmca_pmix_ext3x_la_CPPFLAGS = $(opal_pmix_ext3x_CPPFLAGS)
5656
libmca_pmix_ext3x_la_LDFLAGS = -module -avoid-version $(opal_pmix_ext3x_LDFLAGS)
5757
libmca_pmix_ext3x_la_LIBADD = $(opal_pmix_ext3x_LIBS)
5858

5959
clean-local:
60-
$(RM) -f $(nodist_sources) $(nodist_headers)
60+
$(RM) -f $(nodist_sources)

opal/mca/pmix/ext3x/ext3x.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
22
/*
33
* Copyright (c) 2014-2018 Intel, Inc. All rights reserved.
4-
* Copyright (c) 2014-2017 Research Organization for Information Science
5-
* and Technology (RIST). All rights reserved.
4+
* Copyright (c) 2014-2018 Research Organization for Information Science
5+
* and Technology (RIST). All rights reserved.
66
* Copyright (c) 2014-2015 Mellanox Technologies, Inc.
77
* All rights reserved.
88
* Copyright (c) 2016 Cisco Systems, Inc. All rights reserved.
@@ -1257,7 +1257,7 @@ static void errreg_cbfunc (pmix_status_t status,
12571257
OPAL_ACQUIRE_OBJECT(op);
12581258
op->event->index = errhandler_ref;
12591259
opal_output_verbose(5, opal_pmix_base_framework.framework_output,
1260-
"PMIX2x errreg_cbfunc - error handler registered status=%d, reference=%lu",
1260+
"PMIX3x errreg_cbfunc - error handler registered status=%d, reference=%lu",
12611261
status, (unsigned long)errhandler_ref);
12621262
if (NULL != op->evregcbfunc) {
12631263
op->evregcbfunc(pmix3x_convert_rc(status), errhandler_ref, op->cbdata);

opal/mca/pmix/ext3x/ext3x.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
* Copyright (c) 2014-2018 Intel, Inc. All rights reserved.
44
* Copyright (c) 2014-2015 Mellanox Technologies, Inc.
55
* All rights reserved.
6-
* Copyright (c) 2016 Research Organization for Information Science
7-
* and Technology (RIST). All rights reserved.
6+
* Copyright (c) 2016-2018 Research Organization for Information Science
7+
* and Technology (RIST). All rights reserved.
88
* Copyright (c) 2017 Los Alamos National Security, LLC. All rights
99
* reserved.
1010
* $COPYRIGHT$
@@ -14,8 +14,8 @@
1414
* $HEADER$
1515
*/
1616

17-
#ifndef MCA_PMIX_PMIX2X_H
18-
#define MCA_PMIX_PMIX2X_H
17+
#ifndef MCA_PMIX_PMIX3X_H
18+
#define MCA_PMIX_PMIX3X_H
1919

2020
#include "opal_config.h"
2121

@@ -348,4 +348,4 @@ OPAL_MODULE_DECLSPEC pmix_proc_state_t ext3x_convert_opalstate(int state);
348348

349349
END_C_DECLS
350350

351-
#endif /* MCA_PMIX_EXTERNAL_H */
351+
#endif /* MCA_PMIX_PMIX3X_H */

0 commit comments

Comments
 (0)