Mercurial > mplayer.hg
view DOCS/xml/gen-html.xsl.sh @ 10157:e21bdbee4de2
Make configure run even on non POSIX compliant shells (Solaris).
Patch by Götz Waschk <waschk@informatik.uni-rostock.de>.
author | diego |
---|---|
date | Fri, 23 May 2003 00:24:28 +0000 (2003-05-23) |
parents | 461f71ba8af4 |
children |
line wrap: on
line source
# # Helper script to generate html.xsl. # if test $# -ne 1; then echo "Usage: $0 <path to chunk.xsl>" exit 1 fi if test -f "$1"; then :; else echo "$0: file not found: \"$1\"" exit 1 fi cat << EOF <?xml version="1.0" encoding="ISO-8859-1"?> <!-- *************************************************** This file is generated automatically. DO NOT EDIT. *************************************************** --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:import href="$1"/> <xsl:include href="html-common.xsl"/> </xsl:stylesheet> EOF