Revision a01dd3c6 Makefile.am

b/Makefile.am
9 9
abs_top_builddir = @abs_top_builddir@
10 10
abs_top_srcdir = @abs_top_srcdir@
11 11

  
12
# Use bash in order to be able to use pipefail
13
SHELL=/bin/bash
14

  
12 15
ACLOCAL_AMFLAGS = -I autotools
13 16
BUILD_BASH_COMPLETION = $(top_srcdir)/autotools/build-bash-completion
14 17
RUN_IN_TEMPDIR = $(top_srcdir)/autotools/run-in-tempdir
......
617 620
man/%.7.in man/%.8.in: man/%.rst man/footer.man
618 621
	@test -n "$(PANDOC)" || \
619 622
	  { echo 'pandoc' not found during configure; exit 1; }
623
	set -o pipefail ; \
620 624
	$(PANDOC) -s -f rst -t man -A man/footer.man $< | \
621 625
	  sed -e 's/\\@/@/g' > $@
622 626
	if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN) $@; fi
......
624 628
man/%.html.in: man/%.rst man/footer.html
625 629
	@test -n "$(PANDOC)" || \
626 630
	  { echo 'pandoc' not found during configure; exit 1; }
631
	set -o pipefail ; \
627 632
	$(PANDOC) -s -f rst -t html -A man/footer.html $< | \
628 633
	  sed -e 's/\\@/@/g' > $@
629 634

  

Also available in: Unified diff