summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2020-12-31 11:15:11 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2020-12-31 11:15:11 +0100
commitc46fd1ff5bbddbe7b66c6a362d493d4fcb338c10 (patch)
treed777fd9b1287f556e6e170d5e8a767a1549c9eae
parent55b237dbe83acce70649d118b1fb69067f96b661 (diff)
downloadvdr-c46fd1ff5bbddbe7b66c6a362d493d4fcb338c10.tar.gz
vdr-c46fd1ff5bbddbe7b66c6a362d493d4fcb338c10.tar.bz2
The Makefile now makes sure the 'x' bit of Doxyfile.filter is set before calling doxygen
-rw-r--r--HISTORY4
-rw-r--r--Makefile3
2 files changed, 5 insertions, 2 deletions
diff --git a/HISTORY b/HISTORY
index 31b52c97..35525720 100644
--- a/HISTORY
+++ b/HISTORY
@@ -9569,6 +9569,8 @@ Video Disk Recorder Revision History
- Events in the past are no longer marked as having a timer in the Schedules
menu.
-2020-12-29:
+2020-12-31:
- Fixed strreplace() to handle NULL strings (reported by Jürgen Schneider).
+- Somewhere down the road the 'x' bit of Doxyfile.filter got lost, so the
+ Makefile now makes sure it is set before calling doxygen.
diff --git a/Makefile b/Makefile
index 25d4a9ca..a251f903 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@
# See the main source file 'vdr.c' for copyright information and
# how to reach the author.
#
-# $Id: Makefile 4.10 2020/06/27 09:13:04 kls Exp $
+# $Id: Makefile 5.1 2020/12/31 11:11:53 kls Exp $
.DELETE_ON_ERROR:
@@ -342,6 +342,7 @@ install-pc: vdr.pc
srcdoc:
@cat $(DOXYFILE) > $(DOXYFILE).tmp
@echo PROJECT_NUMBER = $(VDRVERSION) >> $(DOXYFILE).tmp
+ @chmod +x $(DOXYFILE).filter
$(DOXYGEN) $(DOXYFILE).tmp
@rm $(DOXYFILE).tmp