Replaced bin/mkdirs w/ mkdir -p -m 755, which is POSIX (#2018)

This commit is contained in:
Dana Robinson
2022-08-17 08:02:39 -07:00
committed by GitHub
parent 191c27c0a9
commit d6927e49c0
2 changed files with 2 additions and 35 deletions

View File

@@ -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.