openbsd-ports/emulators/openmsx/patches/patch-build_version2code_py
bentley 79b7b1f4cf Import openmsx-0.8.1.
openMSX is an emulator for the MSX home computer system. Its goal is to
emulate all aspects of the MSX with 100% accuracy: perfection in
emulation. It also has a number of special features, some unique to this
emulator.

ok landry@
2011-08-28 18:57:50 +00:00

16 lines
550 B
Plaintext

$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()