diff options
author | David Young <dyoung@hdfgroup.org> | 2020-05-26 15:43:20 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-05-26 15:43:20 (GMT) |
commit | 4cebd8aa6c965fe2e5dde6dbff36b2be3ca58bf1 (patch) | |
tree | 9ae11843b88b3e3fba8d94554fe339f501ac3aed /hl/fortran/examples/Makefile.am | |
parent | 32f8fed120df107b46ba73f60429f14f71b30012 (diff) | |
download | hdf5-4cebd8aa6c965fe2e5dde6dbff36b2be3ca58bf1.zip hdf5-4cebd8aa6c965fe2e5dde6dbff36b2be3ca58bf1.tar.gz hdf5-4cebd8aa6c965fe2e5dde6dbff36b2be3ca58bf1.tar.bz2 |
Make examples installation respect DESTDIR. Fixes
HDFFV-11060.
Diffstat (limited to 'hl/fortran/examples/Makefile.am')
-rw-r--r-- | hl/fortran/examples/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hl/fortran/examples/Makefile.am b/hl/fortran/examples/Makefile.am index b81cc6f..32f279c 100644 --- a/hl/fortran/examples/Makefile.am +++ b/hl/fortran/examples/Makefile.am @@ -51,8 +51,8 @@ endif # Tell automake how to install examples # Note: no '/' after DESTDIR. Explanation in commence.am -EXAMPLEDIR=$(examplesdir)/hl/fortran -EXAMPLETOPDIR=$(examplesdir)/hl +EXAMPLEDIR=${DESTDIR}$(examplesdir)/hl/fortran +EXAMPLETOPDIR=${DESTDIR}$(examplesdir)/hl # List dependencies for each example. Normally, automake would take # care of this for us, but if we tell automake about the programs it |