summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuli Seppänen <samuli@openvpn.net>2011-04-14 17:43:40 +0300
committerDavid Sommerseth <dazo@users.sourceforge.net>2011-04-14 21:17:58 +0200
commitf71233577e573c5d1dc0cd711b7b78867a7853be (patch)
tree1795863c89e851d9ef03dc879978fda27a6fb54d
parent8cf7903c31d76ea905b7fd5d9257f116f424fe9e (diff)
downloadopenvpn-f71233577e573c5d1dc0cd711b7b78867a7853be.tar.gz
openvpn-f71233577e573c5d1dc0cd711b7b78867a7853be.tar.xz
openvpn-f71233577e573c5d1dc0cd711b7b78867a7853be.zip
Fixed copying of tapinstall.exe to dist/bin when using prebuilt TAP-drivers
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 343037a99708bd7785de10cc5be37a150609bd01)
-rw-r--r--win/make_dist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/make_dist.py b/win/make_dist.py
index 29eb2d2..edb0e6a 100644
--- a/win/make_dist.py
+++ b/win/make_dist.py
@@ -94,7 +94,7 @@ def main(config, tap=True):
dest = {'amd64' : amd64, 'i386' : i386}
for dirpath, dirnames, filenames in os.walk(home_fn(ti_dir)):
for f in filenames:
- if f == 'devcon.exe':
+ if f in ( 'devcon.exe', 'tapinstall.exe' ):
dir_name = os.path.basename(dirpath)
src = os.path.join(dirpath, f)
dst = os.path.join(dest[dir_name],'tapinstall.exe')