diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2023-06-07 15:08:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-07 15:08:33 (GMT) |
commit | 37efa90085f6c34db6d5947f3320c3d519ee3653 (patch) | |
tree | 8991488b2082e2538143089775db861b4d7cd64e /config/conclude.am | |
parent | 8304ce006ed06807545a15998bbe782c663afd2f (diff) | |
download | hdf5-37efa90085f6c34db6d5947f3320c3d519ee3653.zip hdf5-37efa90085f6c34db6d5947f3320c3d519ee3653.tar.gz hdf5-37efa90085f6c34db6d5947f3320c3d519ee3653.tar.bz2 |
Remove unused cruft from bin dir (#3071)
Diffstat (limited to 'config/conclude.am')
-rw-r--r-- | config/conclude.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/conclude.am b/config/conclude.am index a74c83a..bda1a19 100644 --- a/config/conclude.am +++ b/config/conclude.am @@ -121,7 +121,7 @@ $(TEST_PROG_CHKEXE) $(TEST_PROG_PARA_CHKEXE) dummy.chkexe_: tname=$(@:.chkexe_=)$(EXEEXT);\ log=$(@:.chkexe_=.chklog); \ echo "============================"; \ - if $(top_srcdir)/bin/newer $(@:.chkexe_=.chkexe) $${tname}; then \ + if [ $(@:.chkexe_=.chkexe) -nt $${tname} ]; then \ echo "No need to test $${tname} again."; \ else \ if test -n "$(REALTIMEOUTPUT)"; then \ @@ -209,7 +209,7 @@ $(TEST_SCRIPT_CHKSH) $(TEST_SCRIPT_PARA_CHKSH) dummysh.chkexe_: chkname=`basename $(@:.chkexe_=.chkexe)`;\ log=`basename $(@:.chkexe_=.chklog)`; \ echo "============================"; \ - if $(top_srcdir)/bin/newer $${chkname} $$cmd $(SCRIPT_DEPEND); then \ + if [ $${chkname} -nt $$cmd ] && [ $${chkname} -nt $(SCRIPT_DEPEND) ]; then \ echo "No need to test $${tname} again."; \ else \ echo "============================" > $${log}; \ |