summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuli Seppänen <samuli@openvpn.net>2011-04-14 17:40:33 +0300
committerDavid Sommerseth <dazo@users.sourceforge.net>2011-04-14 21:17:49 +0200
commit6f0ded58250d4b4fef9cfdd314165d88d8f8f80e (patch)
treec6fa7e04c053b57dbf13fba1aafbdcdda838647a
parenteb4b1bb6adc7fb1828839967a7807b6317305145 (diff)
downloadopenvpn-6f0ded58250d4b4fef9cfdd314165d88d8f8f80e.tar.gz
openvpn-6f0ded58250d4b4fef9cfdd314165d88d8f8f80e.tar.xz
openvpn-6f0ded58250d4b4fef9cfdd314165d88d8f8f80e.zip
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)
-rw-r--r--win/config_ti.py2
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)