Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 719846 | Differences between
and this patch

Collapse All | Expand All

(-)a/Makefile.am (-2 / +1 lines)
Lines 2212-2218 Link Here
2212
	  echo "Man page $< has hardcoded paths (see above)!" 1>&2 ; \
2212
	  echo "Man page $< has hardcoded paths (see above)!" 1>&2 ; \
2213
	  exit 1; \
2213
	  exit 1; \
2214
	fi
2214
	fi
2215
	set -e ; \
2216
	trap 'echo auto-removing $@; rm $@' EXIT; \
2215
	trap 'echo auto-removing $@; rm $@' EXIT; \
2217
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(DOCPP) < $< > $@ ;\
2216
	PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(DOCPP) < $< > $@ ;\
2218
	$(CHECK_MAN_REFERENCES) $@; \
2217
	$(CHECK_MAN_REFERENCES) $@; \
Lines 2221-2227 Link Here
2221
man/%.7.in man/%.8.in man/%.1.in: man/%.gen man/footer.rst
2220
man/%.7.in man/%.8.in man/%.1.in: man/%.gen man/footer.rst
2222
	@test -n "$(PANDOC)" || \
2221
	@test -n "$(PANDOC)" || \
2223
	  { echo 'pandoc' not found during configure; exit 1; }
2222
	  { echo 'pandoc' not found during configure; exit 1; }
2224
	set -o pipefail -e; \
2223
	set -o pipefail; \
2225
	trap 'echo auto-removing $@; rm $@' EXIT; \
2224
	trap 'echo auto-removing $@; rm $@' EXIT; \
2226
	$(PANDOC) -s -f rst -t man $< man/footer.rst | \
2225
	$(PANDOC) -s -f rst -t man $< man/footer.rst | \
2227
	  sed -e 's/\\@/@/g' > $@; \
2226
	  sed -e 's/\\@/@/g' > $@; \

Return to bug 719846