diff options
author | Anders Svensson <[email protected]> | 2013-02-21 18:34:16 +0100 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2013-02-21 18:34:16 +0100 |
commit | f821e0b080bc6ff94fbd65936b97803040c2fd71 (patch) | |
tree | 6db84008eebb3f783576dde937e90c86f7abb713 /system/doc/top | |
parent | 564d62b14907a86d877301c9500452dead479681 (diff) | |
parent | bba76e5787b94b805c99b144314f1a611ca7e501 (diff) | |
download | otp-f821e0b080bc6ff94fbd65936b97803040c2fd71.tar.gz otp-f821e0b080bc6ff94fbd65936b97803040c2fd71.tar.bz2 otp-f821e0b080bc6ff94fbd65936b97803040c2fd71.zip |
Merge branch 'anders/make/comma_in_generated_date/OTP-10871'
* anders/make/comma_in_generated_date/OTP-10871:
Fix comma usage in generated documentation date
Diffstat (limited to 'system/doc/top')
-rw-r--r-- | system/doc/top/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/doc/top/Makefile b/system/doc/top/Makefile index 673ba44c94..37466fa2d9 100644 --- a/system/doc/top/Makefile +++ b/system/doc/top/Makefile @@ -1,7 +1,7 @@ # # %CopyrightBegin% # -# Copyright Ericsson AB 1999-2012. All Rights Reserved. +# Copyright Ericsson AB 1999-2013. All Rights Reserved. # # The contents of this file are subject to the Erlang Public License, # Version 1.1, (the "License"); you may not use this file except in @@ -162,7 +162,7 @@ $(MAN_INDEX): $(MAN_INDEX_SCRIPT) #-------------------------------------------------------------------------- $(HTMLDIR)/highlights.html: highlights.xml - date=`date +"%B %e %Y"`; \ + date=`date +"%B %e, %Y"`; \ $(XSLTPROC) --output $(@) \ --stringparam docgen "$(DOCGEN)" \ --stringparam topdocdir "$(TOPDOCDIR)" \ @@ -179,7 +179,7 @@ $(HTMLDIR)/highlights.html: highlights.xml $(HTMLDIR)/incompatible.html: incompatible.xml - date=`date +"%B %e %Y"`; \ + date=`date +"%B %e, %Y"`; \ $(XSLTPROC) --output $(@) --stringparam docgen "$(DOCGEN)" \ --stringparam topdocdir "$(TOPDOCDIR)" \ --stringparam pdfdir "$(PDFREFDIR)" \ |