diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2022-08-17 15:02:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-17 15:02:39 (GMT) |
commit | d6927e49c0fc36d4909ec1e2ab1a69eecf9d4575 (patch) | |
tree | 7d2fb0542efaa2d8840c7c28861e6ceb4e01b2be /config | |
parent | 191c27c0a9f99677e04c7573bb5d91588748ea33 (diff) | |
download | hdf5-d6927e49c0fc36d4909ec1e2ab1a69eecf9d4575.zip hdf5-d6927e49c0fc36d4909ec1e2ab1a69eecf9d4575.tar.gz hdf5-d6927e49c0fc36d4909ec1e2ab1a69eecf9d4575.tar.bz2 |
Replaced bin/mkdirs w/ `mkdir -p -m 755`, which is POSIX (#2018)
Diffstat (limited to 'config')
-rw-r--r-- | config/examples.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/examples.am b/config/examples.am index 03108ef..b616f3d 100644 --- a/config/examples.am +++ b/config/examples.am @@ -51,9 +51,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. |