git placeholders are not expanded in the libqb-2.0.8.tar.xz and libqb-2.0.8.tar.gz release tarballs, suggesting that they were not created by git archive.
For example, if I use the automatically-generated v2.0.8.tar.gz tarball that I know from #312 I'm not supposed to use, this line:
|
m4_esyscmd([build-aux/git-version-gen $(echo '$Format:%h??%D$'\ |
is expanded to:
m4_esyscmd([build-aux/git-version-gen $(echo '002171bbc??tag: v2.0.8'\
and this line:
|
SOURCE_EPOCH='$Format:%ct$' # template for rewriting by git-archive |
is expanded to:
SOURCE_EPOCH='1689939039' # template for rewriting by git-archive
However in the release tarballs these $Format:…$ placeholders remain unchanged.
git placeholders are not expanded in the libqb-2.0.8.tar.xz and libqb-2.0.8.tar.gz release tarballs, suggesting that they were not created by
git archive.For example, if I use the automatically-generated v2.0.8.tar.gz tarball that I know from #312 I'm not supposed to use, this line:
libqb/configure.ac
Line 9 in 40542f3
is expanded to:
and this line:
libqb/configure.ac
Line 816 in 40542f3
is expanded to:
SOURCE_EPOCH='1689939039' # template for rewriting by git-archiveHowever in the release tarballs these
$Format:…$placeholders remain unchanged.