diff options
author | John Stebbins <[email protected]> | 2016-06-11 09:58:03 -0600 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-06-11 10:00:28 -0600 |
commit | 175f485880cccb23d28b76646bf6ca92e6862248 (patch) | |
tree | a3bd692ad67bf4eb20489e289bf839c47dc46980 /pkg/module.defs | |
parent | 860d9f92442584796b8a1128c49a4b867ddedfa0 (diff) |
build: fix references to documents (e.g. NEWS -> NEWS.markdown)
Diffstat (limited to 'pkg/module.defs')
-rw-r--r-- | pkg/module.defs | 10 |
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 ############################################################################### |