[openib-general] [PATCH 1/4] ofabuild Fixed syntax error.
Steve Wise
swise at opengridcomputing.com
Thu Jan 18 12:28:27 PST 2007
Signed-off-by: Steve Wise <swise at opengridcomputing.com>
---
build_ofa_user.sh | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/build_ofa_user.sh b/build_ofa_user.sh
index 82a10ee..2182d96 100755
--- a/build_ofa_user.sh
+++ b/build_ofa_user.sh
@@ -338,14 +338,14 @@ check_build()
ex tar xzf ${dest}/${proj}/${projdir}.tgz
cd ${tmpdir}/${projdir}
- if ! ( ./configure ${WITH_PACKAGES} > ${configure_log} 2>&1 )
+ if ! ( ./configure ${WITH_PACKAGES} > ${configure_log} 2>&1 ) ; then
echo "Failed: ./configure ${WITH_PACKAGES}" | tee -a ${report}
echo
exit 1
fi
echo "Passed: ./configure ${WITH_PACKAGES}" | tee -a ${report}
- if ! ( make all > ${make_log} 2>&1 )
+ if ! ( make all > ${make_log} 2>&1 ) ; then
echo "Failed: make all" | tee -a ${report}
echo
exit 1
More information about the general
mailing list