Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions Makefile.ompi-rules
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ if ! MAN_PAGE_BUILD_USEMPIF08_BINDINGS
endif

.1in.1:
@ echo " BUILDING $@"
@ $(top_srcdir)/ompi/mpi/man/make_manpage.pl \
$(OMPI_V_GEN) $(top_srcdir)/ompi/mpi/man/make_manpage.pl \
--package-name='@PACKAGE_NAME@' \
--package-version='@PACKAGE_VERSION@' \
--ompi-date='@OMPI_RELEASE_DATE@' \
Expand All @@ -31,8 +30,7 @@ endif
--output=$@

.3in.3:
@ echo " BUILDING $@"
@ $(top_srcdir)/ompi/mpi/man/make_manpage.pl \
$(OMPI_V_GEN) $(top_srcdir)/ompi/mpi/man/make_manpage.pl \
--package-name='@PACKAGE_NAME@' \
--package-version='@PACKAGE_VERSION@' \
--ompi-date='@OMPI_RELEASE_DATE@' \
Expand All @@ -43,8 +41,7 @@ endif
--output=$@

.7in.7:
@ echo " BUILDING $@"
@ $(top_srcdir)/ompi/mpi/man/make_manpage.pl \
$(OMPI_V_GEN) $(top_srcdir)/ompi/mpi/man/make_manpage.pl \
--package-name='@PACKAGE_NAME@' \
--package-version='@PACKAGE_VERSION@' \
--ompi-date='@OMPI_RELEASE_DATE@' \
Expand Down
6 changes: 3 additions & 3 deletions ompi/mpi/man/make_manpage.pl
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@
$file =~ s/#ORTE_DATE#/$orte_date/g;

if ($cxx == 0) {
$file =~ s/\n\.SH C\+\+ Syntax.+?fi\n/\n/s;
$file =~ s/\n\.SH C\+\+ Syntax.+?\n\.SH/\n\.SH/s;
}

if ($fortran == 0) {
$file =~ s/\n\.SH Fortran Syntax.+?fi\n/\n/s;
$file =~ s/\n\.SH Fortran Syntax.+?\n\.SH/\n\.SH/s;
}

if ($f08 == 0) {
$file =~ s/\n\.SH Fortran 2008 Syntax.+?fi\n/\n/s;
$file =~ s/\n\.SH Fortran 2008 Syntax.+?\n\.SH/\n\.SH/s;
}

open(FILE, ">$output") ||
Expand Down
5 changes: 5 additions & 0 deletions ompi/mpiext/affinity/c/OMPI_Affinity_str.3in
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
.\" -*- nroff -*-
.\" Copyright 2007-2010 Oracle and/or its affiliates. All rights reserved.
.\" Copyright (c) 1996 Thinking Machines Corporation
.\" Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
.\" $COPYRIGHT$
.TH OMPI_Affinity_str 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
.SH NAME
\fBOMPI_Affinity_str\fP \- Obtain prettyprint strings of processor affinity information for this process
Expand All @@ -20,6 +22,9 @@ int OMPI_Affinity_str(ompi_affinity_fmt_type_t \fIfmt_type\fP,
.SH Fortran Syntax
There is no Fortran binding for this function.
.
.SH Fortran 2008 Syntax
There is no Fortran 2008 binding for this function.
.
.SH C++ Syntax
There is no C++ binding for this function.
.
Expand Down