This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author matrixise
Recipients matrixise
Date 2018-10-15.20:10:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1539634206.6.0.788709270274.issue34994@psf.upfronthosting.co.za>
In-reply-to
Content
> ./configure --prefix=$PWD-build --with-pydebug --quiet
> make -j 4 -s
> git --git-dir ./.git rev-parse --short HEAD
ee171a26c1
> ./python -m sysconfig | grep GIT
GITBRANCH = "git --git-dir ./.git name-rev --name-only HEAD"
GITTAG = "git --git-dir ./.git describe --all --always --dirty"
GITVERSION = "git --git-dir ./.git rev-parse --short HEAD"

Normally, I should get the real values in these variables and not the git commands.
I don't understand why there are the git commands, I don't want to execute the commands, just get the git information.

The result should be
GITBRANCH = "master"
GITTAG = "heads/master"
GITVERSION = "ee171a26c1"

I think there is an issue. Is it right?
History
Date User Action Args
2018-10-15 20:10:06matrixisesetrecipients: + matrixise
2018-10-15 20:10:06matrixisesetmessageid: <1539634206.6.0.788709270274.issue34994@psf.upfronthosting.co.za>
2018-10-15 20:10:06matrixiselinkissue34994 messages
2018-10-15 20:10:06matrixisecreate