diff options
author | Jörg Mayer <jmayer@loplof.de> | 2005-02-20 07:25:58 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2005-02-20 07:25:58 +0000 |
commit | a177b7a4cc593a7655c8a9bc23ced7ac68cf2b6d (patch) | |
tree | 47be4ecaf312ceccb515354881511670744c3b8a /docbook | |
parent | 24eba5be0dedbce300374e97f5cf3d3d0c5fc651 (diff) | |
download | wireshark-a177b7a4cc593a7655c8a9bc23ced7ac68cf2b6d.tar.gz wireshark-a177b7a4cc593a7655c8a9bc23ced7ac68cf2b6d.tar.bz2 wireshark-a177b7a4cc593a7655c8a9bc23ced7ac68cf2b6d.zip |
Fix generation of svn_version.xml with Unix make
svn path=/trunk/; revision=13446
Diffstat (limited to 'docbook')
-rw-r--r-- | docbook/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docbook/Makefile b/docbook/Makefile index ca95d87e9b..e858b0cc67 100644 --- a/docbook/Makefile +++ b/docbook/Makefile @@ -35,7 +35,7 @@ XSLTPROC="xsltproc" XMLLINT="xmllint" # as eug_chm will stop with an error, make sure it's the last in this dependency list -all: eug edg +all: svn_version.xml eug edg clean: rm -f *.html @@ -58,7 +58,10 @@ eug: eug_validate eug_pdf_a4 eug_html eug_html_chunked eug_chm # # on every build, record the working copy revision string # -svn_version.xml:: +# FORCE is the portable version of .PHONY +FORCE: + +svn_version.xml: FORCE echo -n '<!ENTITY SvnVersion "' > svn_version.xml svnversion -n . >> svn_version.xml echo '">' >> svn_version.xml |