Skip to content

Commit

Permalink
Fix some bashims. More information on https://wiki.ubuntu.com/DashAsB…
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvestre committed Feb 1, 2015
1 parent 38a2e36 commit 8931c49
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions autoconf/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1535,11 +1535,11 @@ AC_ARG_WITH(oprofile,
AC_SEARCH_LIBS(bfd_init, bfd, [], [])
AC_SEARCH_LIBS(op_open_agent, opagent, [], [
echo "Error! You need to have libopagent around."
exit -1
exit 1
])
AC_CHECK_HEADER([opagent.h], [], [
echo "Error! You need to have opagent.h around."
exit -1
exit 1
])
fi ;;
*)
Expand Down
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -9910,7 +9910,7 @@ if test "$ac_res" != no; then
else

echo "Error! You need to have libopagent around."
exit -1
exit 1

fi

Expand Down Expand Up @@ -10073,7 +10073,7 @@ if test $ac_cv_header_opagent_h = yes; then
else

echo "Error! You need to have opagent.h around."
exit -1
exit 1

fi

Expand Down
2 changes: 1 addition & 1 deletion utils/lit/utils/check-coverage
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fi
# sitecustomize.
if ! python -c \
'import sitecustomize, sys; sys.exit("coverage" not in dir(sitecustomize))' \
&> /dev/null; then
>/dev/null 2>&1; then
printf 1>&2 "error: active python does not appear to enable coverage in its 'sitecustomize.py'\n"
exit 1
fi
Expand Down

0 comments on commit 8931c49

Please sign in to comment.