Blame SOURCES/skip-generating-doc.patch

084cc6
diff -rup a/Makefile b/Makefile
084cc6
--- a/Makefile	2016-06-29 20:24:47.000000000 +0200
084cc6
+++ b/Makefile	2016-06-30 11:10:15.471685702 +0200
084cc6
@@ -9,7 +9,7 @@ MINOR   := $(shell echo $(VERSION) | cut
084cc6
 RELEASE := $(shell echo `awk '/^Release:/ {gsub(/\%.*/,""); print $2}' sos.spec`)
084cc6
 REPO = https://github.com/sosreport/sos
084cc6
 
084cc6
-SUBDIRS = po sos sos/plugins sos/policies docs
084cc6
+SUBDIRS = po sos sos/plugins sos/policies #docs
084cc6
 PYFILES = $(wildcard *.py)
084cc6
 # OS X via brew
084cc6
 # MSGCAT = /usr/local/Cellar/gettext/0.18.1.1/bin/msgcat
084cc6
@@ -30,9 +30,9 @@ DEB_ARCHIVE_DIR = $(DIST_BUILD_DIR)/$(NA
084cc6
 SRC_BUILD = $(DIST_BUILD_DIR)/sdist
084cc6
 PO_DIR = $(SRC_BUILD)/sos/po
084cc6
 
084cc6
-.PHONY: docs
084cc6
-docs:
084cc6
-	make -C docs html man
084cc6
+#.PHONY: docs
084cc6
+#docs:
084cc6
+#	make -C docs html man
084cc6
 
084cc6
 build:
084cc6
 	for d in $(SUBDIRS); do make -C $$d; [ $$? = 0 ] || exit 1 ; done