|
Last change
on this file since 180 was 2, checked in by Dmitry A. Kuminov, 17 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 |
|
|---|
| 5 | target="qreportcontext_p.h"
|
|---|
| 6 | tmpFile=".reportContextInput.tmp.xml"
|
|---|
| 7 | echo "<dummy/>" > $tmpFile
|
|---|
| 8 | p4 revert $target
|
|---|
| 9 | p4 edit $target
|
|---|
| 10 | xsltproc createReportContext.xsl $tmpFile > $target
|
|---|
| 11 | p4 revert -a $target
|
|---|
| 12 | rm -f $tmpFile
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.