Fossil SCM
Fixed an Obi Wan error in the new Fossil version prefix stuff in auto.def: it was extracting the first 13 characters of the hash, not the first 12.
Commit
7ecd23e0efde0d3dc94c4b85aef3f448fae54d36ad6fe957e3366f4604f62636
Parent
67386c75f539a0d…
1 file changed
+1
-1
M
auto.def
+1
-1
| --- auto.def | ||
| +++ auto.def | ||
| @@ -769,10 +769,10 @@ | ||
| 769 | 769 | |
| 770 | 770 | # Insert a prefix of the checkin ID into the Dockerfile so repeated |
| 771 | 771 | # builds of this version generate and fetch the tarball only once, |
| 772 | 772 | # keeping it in the local Docker cache. |
| 773 | 773 | set ci [readfile "$::autosetup(srcdir)/manifest.uuid"] |
| 774 | -define FOSSIL_CI_PFX [string range $ci 0 12] | |
| 774 | +define FOSSIL_CI_PFX [string range $ci 0 11] | |
| 775 | 775 | make-template Dockerfile.in |
| 776 | 776 | |
| 777 | 777 | make-template Makefile.in |
| 778 | 778 | make-config-header autoconfig.h -auto {USE_* FOSSIL_*} |
| 779 | 779 |
| --- auto.def | |
| +++ auto.def | |
| @@ -769,10 +769,10 @@ | |
| 769 | |
| 770 | # Insert a prefix of the checkin ID into the Dockerfile so repeated |
| 771 | # builds of this version generate and fetch the tarball only once, |
| 772 | # keeping it in the local Docker cache. |
| 773 | set ci [readfile "$::autosetup(srcdir)/manifest.uuid"] |
| 774 | define FOSSIL_CI_PFX [string range $ci 0 12] |
| 775 | make-template Dockerfile.in |
| 776 | |
| 777 | make-template Makefile.in |
| 778 | make-config-header autoconfig.h -auto {USE_* FOSSIL_*} |
| 779 |
| --- auto.def | |
| +++ auto.def | |
| @@ -769,10 +769,10 @@ | |
| 769 | |
| 770 | # Insert a prefix of the checkin ID into the Dockerfile so repeated |
| 771 | # builds of this version generate and fetch the tarball only once, |
| 772 | # keeping it in the local Docker cache. |
| 773 | set ci [readfile "$::autosetup(srcdir)/manifest.uuid"] |
| 774 | define FOSSIL_CI_PFX [string range $ci 0 11] |
| 775 | make-template Dockerfile.in |
| 776 | |
| 777 | make-template Makefile.in |
| 778 | make-config-header autoconfig.h -auto {USE_* FOSSIL_*} |
| 779 |