diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-02-08 17:41:38 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-02-08 17:41:38 (GMT) |
commit | 8c7a1c71b5387344c24a48ab4d67df4ae6d51362 (patch) | |
tree | b1a522e21b748e15147b51aa5b67901ee3c97402 /tools | |
parent | d12027a65299b9980f95ba2d91287ce738c8af20 (diff) | |
download | hdf5-8c7a1c71b5387344c24a48ab4d67df4ae6d51362.zip hdf5-8c7a1c71b5387344c24a48ab4d67df4ae6d51362.tar.gz hdf5-8c7a1c71b5387344c24a48ab4d67df4ae6d51362.tar.bz2 |
[svn-r4926] Purpose:
Bug Fix
Description:
The library path was relying upon the "exec_prefix" variable.
However, we weren't including that into 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@" |