From 9de281111fa3554299b3edd57937d3817dba676f Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Wed, 18 Nov 2015 13:28:17 -0500 Subject: [svn-r28393] HDFFV-9573: bin/h5vers failure, claiming reconfigure failed. bin/reconfigure is replaced by autogen.sh. Fixed h5vers to call autogen.sh instead. Tested: Jam --- bin/h5vers | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/h5vers b/bin/h5vers index 2fe9105..7e61dc8 100755 --- a/bin/h5vers +++ b/bin/h5vers @@ -377,12 +377,12 @@ sub gen_configure { $conf =~ /^(.*?)\/?configure.ac$/; if ($1) { - $rc = system("cd $1 && bin/reconfigure >/dev/null 2>/dev/null && rm -rf autom4te.cache"); + $rc = system("cd $1 && ./autogen.sh -p >/dev/null 2>/dev/null && rm -rf autom4te.cache"); } else { - $rc = system("bin/reconfigure >/dev/null 2>/dev/null && rm -rf autom4te.cache"); + $rc = system("./autogen.sh -p >/dev/null 2>/dev/null && rm -rf autom4te.cache"); } if ($rc) { - printf("bin/reconfigure failed with exit code %d. Aborted.\n", $rc); + printf("./autogen.sh -p failed with exit code %d. Aborted.\n", $rc); exit 1; } } -- cgit v0.12