From: Samuli Seppänen Date: Thu, 14 Apr 2011 14:40:33 +0000 (+0300) Subject: Fix a bug in devcon source code handling X-Git-Tag: v2.2.0~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f0ded58250d4b4fef9cfdd314165d88d8f8f80e;p=thirdparty%2Fopenvpn.git Fix a bug in devcon source code handling The win/config_ti.py build script assumes to find ../tapinstall/7600/sources.in which does not exists in devcon.exe source code directory. This makes config_ti.py look for ../tapinstall/7600/sources instead. Signed-off-by: Samuli Seppänen Acked-by: David Sommerseth Signed-off-by: David Sommerseth (cherry picked from commit a18752d4febdaa91f87efcc487ac865d6587c527) --- diff --git a/win/config_ti.py b/win/config_ti.py index b495bb199..8742caa9f 100644 --- a/win/config_ti.py +++ b/win/config_ti.py @@ -7,7 +7,7 @@ def main(config): shutil.rmtree(dest, ignore_errors=True) shutil.copytree(src, dest) preprocess(config, - in_fn=os.path.join(dest, 'sources.in'), + in_fn=os.path.join(src, 'sources'), out_fn=os.path.join(dest, 'sources'), if_prefix='!', head_comment='# %s\n\n' % autogen)