diff options
| author | John Finlay <finlay@src.gnome.org> | 2006-07-19 20:07:09 +0000 |
|---|---|---|
| committer | John Finlay <finlay@src.gnome.org> | 2006-07-19 20:07:09 +0000 |
| commit | 72beee9cee68ece87530f16c245a872c197df8c7 (patch) | |
| tree | c5038ad2824fa0b542576e5c5a8b0636967b8ee5 /docs | |
| parent | 19a11b3f9649f091c29d705a0fcf0ff7b26733e9 (diff) | |
Use more portable date generator.
* docs/Makefile.am: Use more portable date generator.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/Makefile.am b/docs/Makefile.am index f01825a..40714c2 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -47,7 +47,8 @@ CLEANFILES = build_stamp $(HTML_DATA) reference/version.xml \ EXTRA_DIST = $(XMLFILES) $(XSLFILES) reference/version.xml.in build_stamp: reference ${XMLFILES} ${XSLFILES} - date '+%B %d, %Y' > reference/builddate.xml + python -c 'import datetime; print datetime.date.today()' \ + > reference/builddate.xml xsltproc --nonet --xinclude -o html/ \ --stringparam gtkdoc.bookname "pygobject" \ --stringparam gtkdoc.version ${REF_VERSION} \ |
