diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2003-07-10 19:40:47 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2003-07-10 19:40:47 (GMT) |
commit | ed7556edba0fa03105d631d26aa486d500ea0a44 (patch) | |
tree | a2089d1c2790b7787b87d82a06b02542d563deb8 | |
parent | 932101bb80e44e23ec8c2ed690f8fbc7bd08a47a (diff) | |
download | hdf5-ed7556edba0fa03105d631d26aa486d500ea0a44.zip hdf5-ed7556edba0fa03105d631d26aa486d500ea0a44.tar.gz hdf5-ed7556edba0fa03105d631d26aa486d500ea0a44.tar.bz2 |
[svn-r7202] 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.
Platforms tested:
Tested in eirene by hand.
Misc. update:
-rwxr-xr-x | bin/buildhdf5 | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/bin/buildhdf5 b/bin/buildhdf5 index 4ceec6d..45fc6de 100755 --- a/bin/buildhdf5 +++ b/bin/buildhdf5 @@ -216,11 +216,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 |