summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-07 15:08:33 (GMT)
committerGitHub <noreply@github.com>2023-06-07 15:08:33 (GMT)
commit37efa90085f6c34db6d5947f3320c3d519ee3653 (patch)
tree8991488b2082e2538143089775db861b4d7cd64e /config
parent8304ce006ed06807545a15998bbe782c663afd2f (diff)
downloadhdf5-37efa90085f6c34db6d5947f3320c3d519ee3653.zip
hdf5-37efa90085f6c34db6d5947f3320c3d519ee3653.tar.gz
hdf5-37efa90085f6c34db6d5947f3320c3d519ee3653.tar.bz2
Remove unused cruft from bin dir (#3071)
Diffstat (limited to 'config')
-rw-r--r--config/conclude.am4
-rw-r--r--config/examples.am4
2 files changed, 4 insertions, 4 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}; \
diff --git a/config/examples.am b/config/examples.am
index 06d8d4e..09a9a24 100644
--- a/config/examples.am
+++ b/config/examples.am
@@ -50,9 +50,9 @@ CLEANFILES=$(EXAMPLE_PROG) $(EXAMPLE_PROG_PARA)
# How to create EXAMPLEDIR if it doesn't already exist
$(EXAMPLEDIR):
- -$(top_srcdir)/bin/mkdirs $@
+ mkdir -p -m 755 $@
$(EXAMPLETOPDIR):
- -$(top_srcdir)/bin/mkdirs $@
+ mkdir -p -m 755 $@
# Install and uninstall rules. We install the source files, not the
# example programs themselves.