diff options
author | Arun Isaac | 2021-06-19 16:12:04 +0530 |
---|---|---|
committer | Arun Isaac | 2021-06-19 16:14:53 +0530 |
commit | 7d8380a08dab3921c9422e72d62f38bc6a5b3627 (patch) | |
tree | 5250bdf5268ccdc79b9ec0efdfc18e06db09f861 | |
parent | 1df407a6c290346b0555fc187a90189876198e7c (diff) | |
download | ccwl-7d8380a08dab3921c9422e72d62f38bc6a5b3627.tar.gz ccwl-7d8380a08dab3921c9422e72d62f38bc6a5b3627.tar.lz ccwl-7d8380a08dab3921c9422e72d62f38bc6a5b3627.zip |
Makefile: Use MKDIR_P instead of `mkdir -p'.
* Makefile.am (website/index.html): Use MKDIR_P instead of `mkdir -p'.
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index aa7f08f..395ac7e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -99,7 +99,7 @@ uninstall-local: website: website/index.html website/manual/dev/en website/index.html: README.org - mkdir -p $(dir $@) + $(MKDIR_P) $(dir $@) emacs -Q --script build-aux/build-home-page.el website/manual/dev/en: $(SKRIBILO_BUILD_DIR)/ccwl.html |