File: 01-do-not-distribute-fonts.patch

package info (click to toggle)
cppreference-doc 20170409-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 259,892 kB
  • sloc: xml: 570,184; javascript: 2,779; python: 1,923; php: 520; makefile: 168; sh: 25; ansic: 9; cpp: 9
file content (13 lines) | stat: -rw-r--r-- 474 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
Description: Do not distribute fonts that came with the upstream tarball
Author: Povilas Kanapickas <povilas@radix.lt>
--- cppreference-doc-20130510.orig/Makefile
+++ cppreference-doc-20130510/Makefile
@@ -77,7 +77,7 @@ dist: clean
 install: all
 	# install the devhelp documentation
 	pushd "output/reference" > /dev/null; \
-	find . -type f \
+	find . -type f -not -iname "*.ttf" \
 		-exec install -DT -m 644 '{}' "$(DESTDIR)$(docdir)/html/{}" \; ; \
 	popd > /dev/null