aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/make.configuration.defn6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/make.configuration.defn b/src/make.configuration.defn
index 542e128..ff7d9d6 100644
--- a/src/make.configuration.defn
+++ b/src/make.configuration.defn
@@ -1,7 +1,9 @@
# make.configuration.defn file for thorn HDF5
-# Define standard HDF5 utilities
-ALL_UTILS += gif2h5 h52gif h5copy h5debug h5diff h5dump h5import h5jam h5ls h5mkgrp h5perf_serial h5redeploy h5repack h5repart h5stat h5unjam
+# Define standard HDF5 utilities and install those that we could build/that are
+# present in the system
+STD_HDF5_UTILS = gif2h5 h52gif h5copy h5debug h5diff h5dump h5import h5jam h5ls h5mkgrp h5perf_serial h5redeploy h5repack h5repart h5stat h5unjam
+ALL_UTILS += $(shell cd $(HDF5_DIR)/bin; ls 2>/dev/null $(STD_HDF5_UTILS))
# Install h5check only if it exists
ifneq ($(wildcard $(HDF5_DIR)/bin/h5check*),)