diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2009-04-15 14:18:15 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2009-04-15 14:18:15 (GMT) |
commit | 79d1396cfaae09486314dac680fb68d206dda5aa (patch) | |
tree | 17e11e30e07604bc5fa1015f204fc8f3179e332d /Makefile.in | |
parent | 69ead66b76cb754210c869243c525b24e5716f0e (diff) | |
download | hdf5-79d1396cfaae09486314dac680fb68d206dda5aa.zip hdf5-79d1396cfaae09486314dac680fb68d206dda5aa.tar.gz hdf5-79d1396cfaae09486314dac680fb68d206dda5aa.tar.bz2 |
[svn-r16755] bug fix (ID 1345):
Use environment variable instead of command parameter to test
the install via $DESTDIR test.
Tested:
Jam by hand. (no h5committest which does not test this change.)
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index d4addb4..ee87a5e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -893,7 +893,7 @@ installcheck-local: # check-install is just a synonym for installcheck check-install: installcheck -# check-all-install tests installing default vs. prefix=<dir> vs. $DESTDIR. +# check-all-install tests all installation methods. # Install via different mechanism and then compare against the default. # Fine if only libXXX.a files are different since they may have been ranlib'ed. check-all-install: @@ -904,8 +904,8 @@ check-all-install: @echo Compare against the default installation. @echo Fine if only libXXX.a files are different. -diff -r prefix-tmp ${prefix} - @echo Installing to different DESTDIR location - $(MAKE) DESTDIR=${ROOT}/destdir-tmp install + @echo Installing to different \$DESTDIR location + env DESTDIR=${ROOT}/destdir-tmp $(MAKE) install @echo Compare against the default installation. @echo Fine if only libXXX.a files are different. -diff -r destdir-tmp${prefix} ${prefix} |