diff options
author | David Young <dyoung@hdfgroup.org> | 2020-06-16 13:59:55 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-06-16 13:59:55 (GMT) |
commit | d20000ec51d50b66fc1226eeb656b8dc1358f826 (patch) | |
tree | 93a9038c8adc0ac79378fb8543ae45f1045adbd1 /fortran | |
parent | b718bf567f5ccd649a4d3153276f47a56ee0d939 (diff) | |
parent | 4cebd8aa6c965fe2e5dde6dbff36b2be3ca58bf1 (diff) | |
download | hdf5-d20000ec51d50b66fc1226eeb656b8dc1358f826.zip hdf5-d20000ec51d50b66fc1226eeb656b8dc1358f826.tar.gz hdf5-d20000ec51d50b66fc1226eeb656b8dc1358f826.tar.bz2 |
Merge pull request #2610 in HDFFV/hdf5 from ~DYOUNG/werror:hdffv-11060-examples-destdir to develop
* commit '4cebd8aa6c965fe2e5dde6dbff36b2be3ca58bf1':
Make examples installation respect DESTDIR. Fixes HDFFV-11060.
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/examples/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fortran/examples/Makefile.am b/fortran/examples/Makefile.am index fb510bc..474126d 100644 --- a/fortran/examples/Makefile.am +++ b/fortran/examples/Makefile.am @@ -74,8 +74,8 @@ endif # Tell automake how to install examples # Note: no '/' after DESTDIR. Explanation in commence.am -EXAMPLEDIR=$(examplesdir)/fortran -EXAMPLETOPDIR=$(examplesdir) +EXAMPLEDIR=${DESTDIR}$(examplesdir)/fortran +EXAMPLETOPDIR=${DESTDIR}$(examplesdir) # List dependencies for each example. Normally, automake would take # care of this for us, but if we tell automake about the programs it |