diff options
author | Samuli Seppänen <samuli@openvpn.net> | 2011-04-14 17:40:33 +0300 |
---|---|---|
committer | David Sommerseth <dazo@users.sourceforge.net> | 2011-04-14 21:17:49 +0200 |
commit | 6f0ded58250d4b4fef9cfdd314165d88d8f8f80e (patch) | |
tree | c6fa7e04c053b57dbf13fba1aafbdcdda838647a /win | |
parent | Change the default --tmp-dir path to a more suitable path (diff) | |
download | openvpn-6f0ded58250d4b4fef9cfdd314165d88d8f8f80e.tar.xz |
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 <samuli@openvpn.net>
Acked-by: David Sommerseth <dazo@users.sourceforge.net>
Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
(cherry picked from commit a18752d4febdaa91f87efcc487ac865d6587c527)
Diffstat (limited to '')
-rw-r--r-- | win/config_ti.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/config_ti.py b/win/config_ti.py index b495bb1..8742caa 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) |