We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6749322 commit e2b985bCopy full SHA for e2b985b
jenkins/open-mpi-build-script.sh
@@ -177,7 +177,16 @@ else
177
fi
178
179
echo "--> running ./configure --prefix=\"${PREFIX}\" ${CONFIGURE_ARGS}"
180
-./configure --prefix="${PREFIX}" ${CONFIGURE_ARGS}
+if ! ./configure --prefix="${PREFIX}" ${CONFIGURE_ARGS}; then
181
+ echo "./configure --prefix=\"${PREFIX}\" ${CONFIGURE_ARGS} failed, ABORTING !"
182
+ if test -f config.log; then
183
+ echo "config.log content :"
184
+ cat config.log
185
+ else
186
+ echo "no config.log was generated"
187
+ fi
188
+ exit 1
189
+fi
190
191
# shortcut for the distcheck case, as it won't run any tests beyond
192
# the build-in make check tests.
0 commit comments