source: trunk/src/xmlpatterns/environment/createReportContext.sh@ 497

Last change on this file since 497 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

  • Property svn:executable set to *
File size: 380 bytes
Line 
1#!/bin/sh
2# Generate ReportContext.h by invoking createReportContext.xsl, which
3# in turns performs a transformation on the specs, fetched from http://www.w3.org/.
4
5target="qreportcontext_p.h"
6tmpFile=".reportContextInput.tmp.xml"
7echo "<dummy/>" > $tmpFile
8p4 revert $target
9p4 edit $target
10xsltproc createReportContext.xsl $tmpFile > $target
11p4 revert -a $target
12rm -f $tmpFile
Note: See TracBrowser for help on using the repository browser.