diff options
author | Jakub Kulík <Kulikjak@gmail.com> | 2019-01-24 17:29:48 (GMT) |
---|---|---|
committer | Łukasz Langa <lukasz@langa.pl> | 2019-01-24 17:29:48 (GMT) |
commit | 5c8f537669d3379fc50bb0a96accac756e43e281 (patch) | |
tree | 1513e960ca9a17a89b8b419fa382004828a08fda /configure | |
parent | fd628cf5adaeee73eab579393cdff71c8f70cdf2 (diff) | |
download | cpython-5c8f537669d3379fc50bb0a96accac756e43e281.zip cpython-5c8f537669d3379fc50bb0a96accac756e43e281.tar.gz cpython-5c8f537669d3379fc50bb0a96accac756e43e281.tar.bz2 |
bpo-35520: Fix build with dtrace support on certain systems. (#11194)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11352,7 +11352,7 @@ if ${ac_cv_dtrace_link+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_dtrace_link=no - echo 'BEGIN' > conftest.d + echo 'BEGIN{}' > conftest.d "$DTRACE" -G -s conftest.d -o conftest.o > /dev/null 2>&1 && \ ac_cv_dtrace_link=yes |