diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2003-07-22 22:39:43 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2003-07-22 22:39:43 (GMT) |
commit | f80cba321dd0e14eae29dd4ea4f7c2d3a42e1ae9 (patch) | |
tree | 9ef568acd2f9e187faf7482bc06ac89fa1ab06de /config/commence.in | |
parent | e0c59d75a12aee014d55ca69f91e7a84ae38e7e8 (diff) | |
download | hdf5-f80cba321dd0e14eae29dd4ea4f7c2d3a42e1ae9.zip hdf5-f80cba321dd0e14eae29dd4ea4f7c2d3a42e1ae9.tar.gz hdf5-f80cba321dd0e14eae29dd4ea4f7c2d3a42e1ae9.tar.bz2 |
[svn-r7248] Purpose:
Bug fix
Description:
The "prefix?=..." is not recognized by all make commands. Even some
older gmake do not recognize it. The result is that "make install"
failed for many platforms (AIX, Solaris 2.7, HPUX 11, ...) because
when they tried to install at $(prefix)/lib, it becomes /lib since
$(prefix) is not defined.
Solution:
Restore it back to the previous
prefix=...
Platforms tested:
h5committested.
Also ran in-place build using vendor make in kelgia, arabica
and copper.
Misc. update:
Diffstat (limited to 'config/commence.in')
-rw-r--r-- | config/commence.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/commence.in b/config/commence.in index 9c8a623..af1275c 100644 --- a/config/commence.in +++ b/config/commence.in @@ -34,7 +34,7 @@ RUNTEST=$(RUNSERIAL) TRACE=: ## Installation points -prefix?=@prefix@ +prefix=@prefix@ exec_prefix=@exec_prefix@ bindir=@bindir@ libdir=@libdir@ |