diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-02-08 17:40:20 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-02-08 17:40:20 (GMT) |
commit | 0078946ca2ce6da0005cc98871ef8a5370a3a696 (patch) | |
tree | 27af3ce1edc4474b12812399f9588498ddfb4b23 /tools | |
parent | 81e3b7e216c904ee1b9fd217027492cf94b23683 (diff) | |
download | hdf5-0078946ca2ce6da0005cc98871ef8a5370a3a696.zip hdf5-0078946ca2ce6da0005cc98871ef8a5370a3a696.tar.gz hdf5-0078946ca2ce6da0005cc98871ef8a5370a3a696.tar.bz2 |
[svn-r4925] Purpose:
Bug Fix
Description:
The libraries were relying upon the "exec_prefix" variable. However,
we weren't including that variable in the h5cc script.
Solution:
Added it.
Platforms tested:
Linux
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/misc/h5cc.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/misc/h5cc.in b/tools/misc/h5cc.in index 977300a..31edd21 100755 --- a/tools/misc/h5cc.in +++ b/tools/misc/h5cc.in @@ -1,6 +1,6 @@ #! /bin/sh ## -## Copyright (C) 2001 +## Copyright (C) 2001, 2002 ## National Center for Supercomputing Applications ## All rights reserved. ## @@ -16,6 +16,7 @@ ## ## ############################################################################ prefix="@prefix@" +exec_prefix="@exec_prefix@" libdir="@libdir@" includedir="@includedir@" |