e99de7
--- subversion-1.14.0/build/find_python.sh.findpy
e99de7
+++ subversion-1.14.0/build/find_python.sh
e99de7
@@ -26,7 +26,7 @@
e99de7
 for pypath in "$PYTHON" "$PYTHON2" "$PYTHON3" python python2 python3; do
e99de7
   if [ "x$pypath" != "x" ]; then
e99de7
     DETECT_PYTHON="import sys;sys.exit((sys.hexversion < $VERSION) and 1 or 0)"
e99de7
-    if "$pypath" -c "$DETECT_PYTHON" >/dev/null 2>/dev/null; then
e99de7
+    if "$pypath" -c "$DETECT_PYTHON"; then
e99de7
       echo $pypath
e99de7
       exit 0
e99de7
     fi