1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Produce a clean failure in configure when dtrace is selected but cannot be

found.  Besides stopping those early who have no dtrace installed
whatsoever, this will also alert those who have dtrace in /usr/sbin, which
might not be in the path, which would produce confusing failures much later
in the build process.

Add documentation about pointing configure to find dtrace.
This commit is contained in:
Peter Eisentraut
2006-08-17 17:25:43 +00:00
parent 92c651f8b3
commit bb764e94ce
3 changed files with 43 additions and 2 deletions

5
configure vendored
View File

@ -2004,6 +2004,11 @@ fi
test -n "$DTRACE" && break
done
if test -z "$DTRACE"; then
{ { echo "$as_me:$LINENO: error: dtrace not found" >&5
echo "$as_me: error: dtrace not found" >&2;}
{ (exit 1); exit 1; }; }
fi
;;
no)