Skip to content

Commit fe2b6cf

Browse files
committed
dist: Don't build case-conflicting html man pages
The html man page builder creates a web page for every man page generated by our releases. We then check all those pages into the ompi-www repo. Force the build to skip case-conflicting pages (ie, mpiCC because it conflicts with mpicc), even if building on Linux, so that ompi-www continues to be sane when cloned onto MacOS. Signed-off-by: Brian Barrett <[email protected]>
1 parent 4092138 commit fe2b6cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/dist/make-html-man-pages.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ sub doit {
7676
# Autogen if we don't have a configure script
7777
doit("./autogen.pl")
7878
if (! -x "configure");
79-
doit("./configure --prefix=$prefix --enable-mpi-ext=all");
79+
doit("./configure --prefix=$prefix --enable-mpi-ext=all --without-cs-fs");
8080

8181
# Find this OMPI's version
8282
my $version = `fgrep PACKAGE_VERSION opal/include/opal_config.h | cut -d\\\" -f2`;

0 commit comments

Comments
 (0)