xsf / xeps

Hosts the markup for all XMPP Protocol Extensions.
https://xmpp.org/extensions/
Other
125 stars 121 forks source link

Makefile: remove .SILENT, make the targets loud #1309

Closed Flowdalic closed 8 months ago

Flowdalic commented 9 months ago

The Makefile was set globally to silent, which caused the failing commands to be not displayed. For example

flo@neo-pc xeps-xsf $ make html
make: *** [Makefile:112: build/xep-0001.html] Error 1

Removing this provides usefull information about which command failed:

flo@neo-pc xeps-xsf $ make html
xmllint --nonet --noout --noent --loaddtd --valid "xep-0001.xml" ! xmllint --nonet --noout --noent --loaddtd --xpath "//img/@src[not(starts-with(., 'data:'))]" xep-0001.xml 2>/dev/null && true make: *** [Makefile:110: build/xep-0001.html] Error 1
deuill commented 8 months ago

Seems that the underlying issue here is the same as encountered in #1316, were you able to solve these somehow @Flowdalic?