diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-03-30 21:14:48 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-03-30 21:14:48 (GMT) |
commit | 14e06e81cbf54a16e03efb776391acfc2d22e7eb (patch) | |
tree | 1fd44423b9cd97d17a7774799220a93c6bd75513 /config | |
parent | 7ce84a1d39930f96990dd6b9c0403170dfb5c8dc (diff) | |
download | hdf5-14e06e81cbf54a16e03efb776391acfc2d22e7eb.zip hdf5-14e06e81cbf54a16e03efb776391acfc2d22e7eb.tar.gz hdf5-14e06e81cbf54a16e03efb776391acfc2d22e7eb.tar.bz2 |
[svn-r10511]
Purpose:
"Bug fix"
Description:
Hardcoded Makefiles to use /bin/sh instead of letting configure
detect shell automatically. This is what v1.6 does, and avoids
problems on janus.
Platforms tested:
sleipnir, copper, modi4, mir
Diffstat (limited to 'config')
-rw-r--r-- | config/commence.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/commence.am b/config/commence.am index 1aa77c5..4e936e1 100644 --- a/config/commence.am +++ b/config/commence.am @@ -6,6 +6,12 @@ RM=rm -f CP=cp +# Hardcode SHELL to be /bin/sh. Most machines have this shell, and +# on at least one machine configure fails to detect its existence (janus). +# Also, when HDF5 is configured on one machine but run on another, +# configure's automatic SHELL detection may not work on the build machine. +SHELL=/bin/sh + # Libraries to link to while building LIBHDF5=$(top_builddir)/src/libhdf5.la LIBH5TEST=$(top_builddir)/test/libh5test.la |