On Wed, Oct 20, 2010 at 3:09 PM, Daniel P. Berrange <berra...@redhat.com> wrote: > @@ -2175,6 +2175,16 @@ EOF > exit 1 > fi > fi > + > +########################################## > +# For 'dtrace' backend, test if 'dtrace' command is present > +if ! has 'dtrace' ; then > + echo > + echo "Error: dtrace command is not found in PATH $PATH" > + echo > + exit 1 > +fi > + > ########################################## > # End of CC checks > # After here, no more $cc or $ld runs
This doesn't seem to check that [ "$trace_backend" = "dtrace" ] and will break ./configure on boxes without dtrace even when --trace-backend=dtrace is not used. Stefan