diff options
author | Arun Isaac | 2021-11-05 17:29:46 +0530 |
---|---|---|
committer | Arun Isaac | 2021-11-05 17:29:46 +0530 |
commit | 4bae8980f4893cdc28d256d25b08e0f08418b598 (patch) | |
tree | 06dc057a26cc563f1f3927661de22fa5ee6c26b8 | |
parent | 6a058db94f5602f85ba98e7c4191539aa381ec0b (diff) | |
download | ccwl-4bae8980f4893cdc28d256d25b08e0f08418b598.tar.gz ccwl-4bae8980f4893cdc28d256d25b08e0f08418b598.tar.lz ccwl-4bae8980f4893cdc28d256d25b08e0f08418b598.zip |
Makefile: Copy images without recursion.
* Makefile.am (doc/ccwl.html): Copy images without recursion.
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 8b55fd7..a5d0221 100644 --- a/Makefile.am +++ b/Makefile.am @@ -165,7 +165,7 @@ doc/ccwl.html: doc/ccwl.skb doc/skribilo.go $(DOC_IMAGES) $(DOC_SCM) $(DOC_OUT) rm -rf $@ $(MKDIR_P) $@ $(SKRIBILO_GEN)$(builddir)/pre-inst-env $(SKRIBILO) $(SKRIBILO_FLAGS) -t html $< -o $@/index.html - cp -vr $(DOC_IMAGES) $@ + cp -v $(DOC_IMAGES) $@ # The install target depends on the install-data target, which in turn # depends on the install-data-local target. Use the install-data-local |