mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Fix some bashims. More information on https://wiki.ubuntu.com/DashAsBinSh. Reported initially on https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=772302 & https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=772301
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227744 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
38a2e36ad9
commit
8931c49efa
@ -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 ;;
|
||||
*)
|
||||
|
4
configure
vendored
4
configure
vendored
@ -9910,7 +9910,7 @@ if test "$ac_res" != no; then
|
||||
else
|
||||
|
||||
echo "Error! You need to have libopagent around."
|
||||
exit -1
|
||||
exit 1
|
||||
|
||||
fi
|
||||
|
||||
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user