diff options
author | Nikias Bassen | 2021-12-19 03:14:32 +0100 |
---|---|---|
committer | Nikias Bassen | 2021-12-19 03:14:32 +0100 |
commit | c81471ce6e8821ba03427824217612dcab8e091b (patch) | |
tree | 463f2aefeb0a48ceef52db709edc3b1707727845 | |
parent | c31beaaec196c26990139e3fc4f89f996d7b86e9 (diff) | |
download | libplist-c81471ce6e8821ba03427824217612dcab8e091b.tar.gz libplist-c81471ce6e8821ba03427824217612dcab8e091b.tar.bz2 |
Fix 'make docs' target deleting the whole docs subdir
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index b9a1a52..4d21b65 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,7 +14,7 @@ EXTRA_DIST = \ README.md docs/html: $(top_builddir)/doxygen.cfg $(top_srcdir)/include/plist/*.h - rm -rf docs + rm -rf docs/html doxygen doxygen.cfg docs: doxygen.cfg docs/html |