Use xsltproc -o instead of output redirection for AUTHORS file.

This uses the correct (Unix) line endings when building on Microsoft Windows
and thus prevents the file from always being marked as modified.
This commit is contained in:
Michael Schumacher 2009-08-10 22:44:05 +02:00
parent fc979283de
commit 71f2a9f8ae
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ pkgconfig_DATA = \
AUTHORS: authors.xml authors.xsl
if HAVE_XSLTPROC
$(XSLTPROC) authors.xsl $< > $(@) || rm -f $(@)
$(XSLTPROC) -o $(@) authors.xsl $< || rm -f $(@)
endif