]> git.donarmstrong.com Git - debian/debian-policy.git/commitdiff
display what gets executed as it happens, instead of just the loop code
authorManoj Srivastava <srivasta@debian.org>
Thu, 16 Jun 2005 05:35:55 +0000 (05:35 +0000)
committerManoj Srivastava <srivasta@debian.org>
Thu, 16 Jun 2005 05:35:55 +0000 (05:35 +0000)
Author: joy
Date: 2003/01/18 23:17:09
display what gets executed as it happens, instead of just the loop code

git-archimport-id: srivasta@debian.org--etch/debian-policy--devel--3.0--patch-169

debian/rules

index 7a9aa99145d589a3b3f7a49f2f80f28c8e200492..08aa5289cbf83844123afae2486c29822f766b47 100755 (executable)
@@ -92,7 +92,7 @@ all build: stamp-build
 stamp-build:
        $(checkdir)
        -test -f stamp-configure || $(MAKE) -f debian/rules configure
-       set -e; \
+       @set -ex; \
        for file in $(SGML_FILES); do \
          nsgmls -gues $$file.sgml; \
          debiandoc2html $$file.sgml; \
@@ -174,11 +174,11 @@ stamp-policy:  build
        GZIP=-9 cd debconf_spec && \
          tar -zcf ../debconf_specification.xml.tar.gz *
        $(install_file)     debconf_specification.xml.tar.gz $(DOCDIR)/
-       set -e; \
+       @set -ex; \
        for file in $(DESC_FILES); do \
          $(install_file) $$file.desc $(LIBDIR)/$$file; \
        done
-       set -e; \
+       @set -ex; \
        for file in $(SGML_FILES); do \
          tar -C $(DOCDIR) -zxf $$file.html.tar.gz; \
        done