diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-09-20 21:46:24 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-09-20 21:46:24 (GMT) |
commit | 3267458b648b168e4e627a0a02924533dfd3b149 (patch) | |
tree | 54d1c26a2aaf65439d940db65fdb0164abad19c9 /bin/newer | |
parent | 8d7dbd9dc1d33990028bbf00a3424545d8e06033 (diff) | |
download | hdf5-3267458b648b168e4e627a0a02924533dfd3b149.zip hdf5-3267458b648b168e4e627a0a02924533dfd3b149.tar.gz hdf5-3267458b648b168e4e627a0a02924533dfd3b149.tar.bz2 |
[svn-r11446] Purpose:
Bug fix
Description:
Massaged the newer script and config/conclude.am to make SX6 happy.
Platforms tested:
SX6, sol, mir
Diffstat (limited to 'bin/newer')
-rwxr-xr-x | bin/newer | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ f1=$1 shift for f in $*; do - if ! test -f $f; then + if test ! -f $f; then exit 1 fi if test X = X`find $f1 -newer $f -print`; then |