Skip to content

Commit 6a2891e

Browse files
authored
Merge pull request #5526 from jsquyres/pr/man-page-script-abstraction-break
Fix script abstraction break: mv make_manpage.pl to config
2 parents e9f378e + 89773c4 commit 6a2891e

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Makefile.ompi-rules

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- makefile -*-
2-
# Copyright (c) 2008-2015 Cisco Systems, Inc. All rights reserved.
2+
# Copyright (c) 2008-2018 Cisco Systems, Inc. All rights reserved.
33
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
44
# $COPYRIGHT$
55
#
@@ -20,7 +20,7 @@ if ! MAN_PAGE_BUILD_USEMPIF08_BINDINGS
2020
endif
2121

2222
.1in.1:
23-
$(OMPI_V_GEN) $(top_srcdir)/ompi/mpi/man/make_manpage.pl \
23+
$(OMPI_V_GEN) $(top_srcdir)/config/make_manpage.pl \
2424
--package-name='@PACKAGE_NAME@' \
2525
--package-version='@PACKAGE_VERSION@' \
2626
--ompi-date='@OMPI_RELEASE_DATE@' \
@@ -30,7 +30,7 @@ endif
3030
--output=$@
3131

3232
.3in.3:
33-
$(OMPI_V_GEN) $(top_srcdir)/ompi/mpi/man/make_manpage.pl \
33+
$(OMPI_V_GEN) $(top_srcdir)/config/make_manpage.pl \
3434
--package-name='@PACKAGE_NAME@' \
3535
--package-version='@PACKAGE_VERSION@' \
3636
--ompi-date='@OMPI_RELEASE_DATE@' \
@@ -41,7 +41,7 @@ endif
4141
--output=$@
4242

4343
.7in.7:
44-
$(OMPI_V_GEN) $(top_srcdir)/ompi/mpi/man/make_manpage.pl \
44+
$(OMPI_V_GEN) $(top_srcdir)/config/make_manpage.pl \
4545
--package-name='@PACKAGE_NAME@' \
4646
--package-version='@PACKAGE_VERSION@' \
4747
--ompi-date='@OMPI_RELEASE_DATE@' \

config/Makefile.am

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# University of Stuttgart. All rights reserved.
1010
# Copyright (c) 2004-2005 The Regents of the University of California.
1111
# All rights reserved.
12-
# Copyright (c) 2006-2015 Cisco Systems, Inc. All rights reserved.
12+
# Copyright (c) 2006-2018 Cisco Systems, Inc. All rights reserved.
1313
# Copyright (c) 2010 Oracle and/or its affiliates. All rights
1414
# reserved.
1515
# Copyright (c) 2014-2015 Intel, Inc. All rights reserved.
@@ -28,7 +28,8 @@ EXTRA_DIST = \
2828
ltmain_nag_pthread.diff \
2929
ltmain_pgi_tp.diff \
3030
opal_mca_priority_sort.pl \
31-
find_common_syms
31+
find_common_syms \
32+
make_manpage.pl
3233

3334
maintainer-clean-local:
3435
rm -f opal_get_version.sh
File renamed without changes.

ompi/mpi/Makefile.am

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# University of Stuttgart. All rights reserved.
1010
# Copyright (c) 2004-2005 The Regents of the University of California.
1111
# All rights reserved.
12-
# Copyright (c) 2006-2012 Cisco Systems, Inc. All rights reserved.
12+
# Copyright (c) 2006-2018 Cisco Systems, Inc. All rights reserved.
1313
# Copyright (c) 2015 Research Organization for Information Science
1414
# and Technology (RIST). All rights reserved.
1515
# $COPYRIGHT$
@@ -20,7 +20,6 @@
2020
#
2121

2222
EXTRA_DIST = \
23-
mpi/fortran/configure-fortran-output-bottom.h \
24-
mpi/man/make_manpage.pl
23+
mpi/fortran/configure-fortran-output-bottom.h
2524

2625
dist_ompidata_DATA += mpi/help-mpi-api.txt

0 commit comments

Comments
 (0)