kiss-repo

personal package repository
git clone git://bvnf.space/kiss-repo.git
Log | Files | Refs | README | LICENSE

commit a2efc79af71cf34efa97497dae828f32fe3c80af
parent b7008e91dae27313624197dd6919f2759dd3721c
Author: aabacchus <ben@bvnf.space>
Date:   Mon, 24 Jan 2022 13:36:30 +0000

neomutt: remove false dependency on xsltproc

Diffstat:
Mneomutt/build | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/neomutt/build b/neomutt/build @@ -1,7 +1,8 @@ #!/bin/sh -e # enable building with netbsd-curses -sed -i 's/tinfow tinfo/tinfow tinfo terminfo/g' auto.def +sed -i 's/tinfow tinfo/tinfow tinfo terminfo/g;/Unable to find xsltproc/d' \ + auto.def ./configure \ --prefix=/usr \ @@ -17,7 +18,7 @@ sed -i 's/tinfow tinfo/tinfow tinfo terminfo/g' auto.def # Don't actually build the docs (some of the xsltproc html stuff requires # an internet connection) -sed '/^.*_TARGETS=/s/ .*-docs//' Makefile > _ +sed '/^.*_TARGETS=/s/ .*-docs//;s/xsltproc/:/g' Makefile > _ mv _ Makefile make