]> granicus.if.org Git - handbrake/commitdiff
build: fix references to documents (e.g. NEWS -> NEWS.markdown)
authorJohn Stebbins <jstebbins.hb@gmail.com>
Sat, 11 Jun 2016 15:58:03 +0000 (09:58 -0600)
committerJohn Stebbins <jstebbins.hb@gmail.com>
Sat, 11 Jun 2016 16:00:28 +0000 (10:00 -0600)
gtk/ghb.spec
pkg/linux/debian/docs
pkg/module.defs

index b5583fb91281d8bf4bcac9c9f97a119b431edbdd..06faafec238a5b634878a99ce58bdff6442dbb08 100644 (file)
@@ -71,7 +71,7 @@ fi
 
 %files gui -f ghb.lang
 %defattr(-,root,root,-)
-%doc NEWS AUTHORS CREDITS THANKS COPYING
+%doc README.markdown NEWS.markdown AUTHORS.markdown THANKS.markdown COPYING LICENSE
 %{_datadir}/icons/hicolor
 %{_datadir}/applications
 %{_bindir}/ghb
index d65e594c8ccc2dfd847d949891f58860c607c6e0..0cf3c013f4546106e17698fb2272fbfcefb54218 100644 (file)
@@ -1,4 +1,6 @@
-NEWS
-AUTHORS
-CREDITS
-THANKS
+NEWS.markdown
+AUTHORS.markdown
+THANKS.markdown
+README.markdown
+COPYING
+LICENSE
index ad0f2441132da33475ef44f181c0bd63ef7b1778..67e2b14a32b67aed6db9478b4ec8236abd454d03 100644 (file)
@@ -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
 
 ###############################################################################