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.

classification
Title: make fails trying to run svnversion
Type: Stage:
Components: Build Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: barry Nosy List: barry, lemburg
Priority: normal Keywords:

Created on 2006-01-03 11:30 by lemburg, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg27219 - (view) Author: Marc-Andre Lemburg (lemburg) * (Python committer) Date: 2006-01-03 11:30
If you run make in a directory that has an .svn subdir,
make fails if there's no usable subversion installation
on the PATH:

if test -d ./.svn; then \
        svnversion . >buildno; \
elif test -f buildno; then \
        expr `cat buildno` + 1 >buildno1; \
        mv -f buildno1 buildno; \
else echo 1 >buildno; fi
/bin/sh: svnversion: command not found

The above test should probably also check for the
availability of svnversion.
msg27220 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2006-01-03 14:31
Logged In: YES 
user_id=12800

r41907 -- added a test for svnversion command on $PATH
History
Date User Action Args
2022-04-11 14:56:14adminsetgithub: 42752
2006-01-03 11:30:08lemburgcreate