summaryrefslogtreecommitdiffstats
path: root/pkg/module.defs
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2016-06-11 09:58:03 -0600
committerJohn Stebbins <[email protected]>2016-06-11 10:00:28 -0600
commit175f485880cccb23d28b76646bf6ca92e6862248 (patch)
treea3bd692ad67bf4eb20489e289bf839c47dc46980 /pkg/module.defs
parent860d9f92442584796b8a1128c49a4b867ddedfa0 (diff)
build: fix references to documents (e.g. NEWS -> NEWS.markdown)
Diffstat (limited to 'pkg/module.defs')
-rw-r--r--pkg/module.defs10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkg/module.defs b/pkg/module.defs
index ad0f24411..67e2b14a3 100644
--- a/pkg/module.defs
+++ b/pkg/module.defs
@@ -14,12 +14,12 @@ STAGE.out.src/ = $(STAGE.out/)src/
define STAGE.doc
$(MKDIR.exe) -p $(1)doc
- $(CP.exe) $(SRC/)AUTHORS $(1)doc
+ $(CP.exe) $(SRC/)THANKS.markdown $(1)doc
+ $(CP.exe) $(SRC/)README.markdown $(1)doc
+ $(CP.exe) $(SRC/)NEWS.markdown $(1)doc
+ $(CP.exe) $(SRC/)AUTHORS.markdown $(1)doc
$(CP.exe) $(SRC/)COPYING $(1)doc
- $(CP.exe) $(SRC/)CREDITS $(1)doc
- $(CP.exe) $(SRC/)NEWS $(1)doc
- $(CP.exe) $(SRC/)THANKS $(1)doc
- $(CP.exe) $(SRC/)TRANSLATIONS $(1)doc
+ $(CP.exe) $(SRC/)LICENSE $(1)doc
endef
###############################################################################