diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2016-08-31 16:49:21 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2016-08-31 16:49:21 (GMT) |
commit | 095d4fd2cbc1424c582312e6368ae87b0b68a9eb (patch) | |
tree | e60ac57011bbacadcf510bd34c09e4237eb6f390 | |
parent | dce6ead20051d769957b5ac28766a3b640e91dc6 (diff) | |
parent | b368f0de8d53ca536e95f71d88504cd1ee3ea33c (diff) | |
download | hdf5-095d4fd2cbc1424c582312e6368ae87b0b68a9eb.zip hdf5-095d4fd2cbc1424c582312e6368ae87b0b68a9eb.tar.gz hdf5-095d4fd2cbc1424c582312e6368ae87b0b68a9eb.tar.bz2 |
Merge pull request #3 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:HDFFV-9978-build-scripts-release-bbrelease to develop
* commit 'b368f0de8d53ca536e95f71d88504cd1ee3ea33c':
Removed the -p option from the command to run autogen.sh. It interfered with running chkmanifest on a machine with the correct autotools versions but without access to /usr/hdf/bin/AUTOTOOLS. The autogen.sh script says the option is for HDF group use only and is likely to be removed. The same effect can be achieved by adding /usr/hdf/bin/AUTOTOOLS to the beginning of PATH.
-rwxr-xr-x | bin/chkmanifest | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/chkmanifest b/bin/chkmanifest index f5269a1..a0b51af 100755 --- a/bin/chkmanifest +++ b/bin/chkmanifest @@ -54,8 +54,8 @@ fi # Do an autogen if generated files (e.g., configure) is not present if [ ! -f configure ]; then - echo " running $AUTOGEN -p" - $AUTOGEN -p > $AUTOGEN_LOG 2>&1 + echo " running $AUTOGEN" + $AUTOGEN > $AUTOGEN_LOG 2>&1 if [ $? -ne 0 ]; then echo $AUTOGEN encountered error. Abort. echo output from $AUTOGEN: |