Doxygen: Fix generation of dev drop versions.

Version number in the header is displayed without
the Git commit id. The commit id is only used in
the footer.
pull/26/head
Jonatan Antoni 4 years ago
parent 4b4c6800c4
commit 6240f3a052

@ -60,7 +60,8 @@ fi
sed -e "s/{datetime}/${datetime}/" "${DIRNAME}/templates/footer.js.in" \
| sed -e "s/{year}/${year}/" \
| sed -e "s/{projectName}/${projectName}/" \
| sed -e "s/{projectNumber}/${VERSION_FULL}/" \
| sed -e "s/{projectNumber}/${VERSION}/" \
| sed -e "s/{projectNumberFull}/${VERSION_FULL}/" \
> "${DIRNAME}/../Documentation/html/footer.js"
exit 0

@ -3,5 +3,5 @@ function writeHeader() {
};
function writeFooter() {
document.write('Generated on {datetime} for {projectName} {projectNumber}. Copyright © {year} Arm Limited (or its affiliates). All rights reserved.');
document.write('Generated on {datetime} for {projectName} {projectNumberFull}. Copyright © {year} Arm Limited (or its affiliates). All rights reserved.');
};

Loading…
Cancel
Save