/mandos/release

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/release

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Teddy Hogeborn
  • Date: 2014-05-30 09:53:03 UTC
  • mto: (237.7.272 trunk)
  • mto: This revision was merged to the branch mainline in revision 315.
  • Revision ID: teddy@recompile.se-20140530095303-fwmdnayna7c5v0a2
Depend on new enough version of dpkg-dev.

* debian/control (mandos-client/Depends): Add "dpkg-dev (>=1.16.0)";
  initramfs-tools-hook runs "dpkg-architecture -qDEB_HOST_MULTIARCH".

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
OPTIMIZE=-Os -fno-strict-aliasing
27
27
LANGUAGE=-std=gnu99
28
28
htmldir=man
29
 
version=1.6.4
 
29
version=1.6.5
30
30
SED=sed
31
31
 
32
32
USER=$(firstword $(subst :, ,$(shell getent passwd _mandos || getent passwd nobody || echo 65534)))
85
85
        --param man.authors.section.enabled     0 \
86
86
        /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl \
87
87
        $(notdir $<); \
88
 
        $(MANPOST) $(notdir $@);\
89
88
        if locale --all 2>/dev/null | grep --regexp='^en_US\.utf8$$' \
90
89
        && type man 2>/dev/null; then LANG=en_US.UTF-8 MANWIDTH=80 \
91
90
        man --warnings --encoding=UTF-8 --local-file $(notdir $@); \
92
91
        fi >/dev/null)
93
 
# DocBook-to-man post-processing to fix a '\n' escape bug
94
 
MANPOST=$(SED) --in-place --expression='s,\\\\en,\\en,g;s,\\n,\\en,g'
95
92
 
96
93
DOCBOOKTOHTML=$(strip xsltproc --nonet --xinclude \
97
94
        --param make.year.ranges                1 \