[m-rev.] diff: fix the libbrary check_doc target
Julien Fischer
jfischer at opturion.com
Sun Jan 2 23:35:27 AEDT 2022
Fix the library check_doc target.
library/Mmakefile:
Sort the list of modules obtained from mmc --output-stdlib-modules.
Do not set -x.
Julien.
diff --git a/library/Mmakefile b/library/Mmakefile
index f399986..450db02 100644
--- a/library/Mmakefile
+++ b/library/Mmakefile
@@ -235,11 +235,11 @@ getopt.m: getopt_io.m
.PHONY: check_doc
check_doc: MODULES_DOC *.m
@{ \
- set -x; \
sort < MODULES_DOC > DOC_VIA_MODULES; \
mmc --output-stdlib-modules > DOC_VIA_MMC0 2>&1; \
cat DOC_VIA_MMC0 | grep '^DOC ' | \
- sed -e 's/^DOC //' > DOC_VIA_MMC; \
+ sed -e 's/^DOC //' > DOC_VIA_MMC1; \
+ sort DOC_VIA_MMC1 > DOC_VIA_MMC; \
if diff -u DOC_VIA_MODULES DOC_VIA_MMC; then \
true; \
else \
More information about the reviews
mailing list