diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2005-03-08 17:56:28 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2005-03-08 17:56:28 (GMT) |
commit | ffdf709791d9fdee2356b82982829198bb3b1064 (patch) | |
tree | 7b59849185f255f15668a6fde2f0bcc4852078af /bin/buildhdf5 | |
parent | 0bd98ecc77ad50a65f43395f383838d7a68071fe (diff) | |
download | hdf5-ffdf709791d9fdee2356b82982829198bb3b1064.zip hdf5-ffdf709791d9fdee2356b82982829198bb3b1064.tar.gz hdf5-ffdf709791d9fdee2356b82982829198bb3b1064.tar.bz2 |
[svn-r10164] Purpose:
Removed old feature
Description:
Removed the hardsetting of --prefix and creation of <prefix>/ directory
since this version has prefix default to hdf5/ in the build-directory
and will create the <prefix>/ directory during install.
Also updated the help page to reflect the change.
Platforms tested:
Tested in heping by hand.
Diffstat (limited to 'bin/buildhdf5')
-rwxr-xr-x | bin/buildhdf5 | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/bin/buildhdf5 b/bin/buildhdf5 index 03b6ade..5e44a10 100755 --- a/bin/buildhdf5 +++ b/bin/buildhdf5 @@ -51,12 +51,6 @@ hosts building simultantously using a common source code. .../arabica # for SunOS 2.7 .../arabicapp # for SunOS 2.7 parallel .../burrwhite # for Linux 2.4 - -Installing binary -================= -This command always install the binary in \$PWD/installdir. -This allows multiple install testing in the same host if the srcdir -configure is used. EOF } @@ -229,11 +223,7 @@ LOCATE_GASS() # Configure. Default to do --srcdir. CONFIG() { - INSTALLDIR=`pwd`/installdir - - test -d $INSTALLDIR || ( echo mkdir $INSTALLDIR; \ - test "$NOEXEC" != 'noexec' && mkdir $INSTALLDIR ) - CMD="$SRCDIR/configure --prefix=$INSTALLDIR $*" + CMD="$SRCDIR/configure $*" echo $CMD if [ "$NOEXEC" != 'noexec' ]; then $CMD |