From d2b48309a1125e5b631a63ae14fc77604ab49230 Mon Sep 17 00:00:00 2001
From: Albert Graef <aggraef@gmail.com>
Date: Fri, 19 Aug 2022 12:40:47 +0200
Subject: [PATCH] Comment changes.

---
 debuild/Makefile  | 5 ++---
 packages/Makefile | 9 +++++----
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/debuild/Makefile b/debuild/Makefile
index 9359cea82..75f89503a 100644
--- a/debuild/Makefile
+++ b/debuild/Makefile
@@ -115,9 +115,8 @@ $(debsrc):
 # version is generated using git which can't be done outside the git repo).
 	sed 's|^\(#define PD_BUILD_VERSION "\).*"|\1$(PD_BUILD_VERSION)"|' ../pd/src/s_version.h.in > $(debdist)/pd/src/s_version.h
 # Pre-generate the markdown and html docs so that they will be included in the
-# source. This means that we don't need pandoc as a build dependency, which
-# makes live a lot easier since the pandoc versions on older Debian/Ubuntu
-# releases are quite ancient.
+# source. This means that we don't need any special tools as a build
+# dependency, which makes live a lot easier.
 	make -C ../packages/gendoc version="$(PD_L2ORK_VERSION)" build_version="$(PD_BUILD_VERSION)"
 	mv ../packages/gendoc/*-Linux* $(debdist)/packages/gendoc
 	make -C ../packages/gendoc clean
diff --git a/packages/Makefile b/packages/Makefile
index 0cd93a968..94bfe7b56 100644
--- a/packages/Makefile
+++ b/packages/Makefile
@@ -236,9 +236,10 @@ license_install:
 
 
 # AG: Replaced the previous jumble of echo commands with document generation
-# from Markdown using awk for preprocessing and pandoc for formatting. Also
-# updated the document content which was really outdated. You can find all
-# this stuff including the Markdown source in the gendoc subdirectory.
+# from Markdown using awk for preprocessing and python-markdown for
+# formatting. Also updated the document content which was really outdated. You
+# can find all this stuff including the Markdown source in the gendoc
+# subdirectory.
 
 osname = $(shell uname -s|sed 's/\([[:alpha:]]*\).*/\1/')
 
@@ -317,7 +318,7 @@ abstractions_clean:
 doc_clean:
 # These are precious, don't clean them! Otherwise pre-generated docs will be
 # removed before the build starts, and the build system may not have the
-# required tools (i.e., pandoc) installed to re-generate them.
+# required tools installed to re-generate them.
 #	$(MAKE) -C gendoc clean
 
 externals_clean:
-- 
GitLab