12345678910111213141516 |
- $OpenBSD: patch-build_version2code_py,v 1.1.1.1 2011/08/28 18:57:51 bentley Exp $
- Fix a systrace warning when devel/subversion is installed.
- --- build/version2code.py.orig Sun Aug 21 13:24:39 2011
- +++ build/version2code.py Sun Aug 21 13:24:43 2011
- @@ -7,7 +7,7 @@ from version import extractRevisionString, packageVers
- import sys
-
- def iterVersionInclude():
- - revision = extractRevisionString()
- + revision = "unknown"
-
- yield '// Automatically generated by build process.'
- yield 'const bool Version::RELEASE = %s;' % str(releaseFlag).lower()
|