summaryrefslogtreecommitdiffstats
path: root/win
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:16:39 +0200
commit343037a99708bd7785de10cc5be37a150609bd01 (patch)
tree2adab1d3d1c9ef9d2ffc5022131f3bf4616ae3b6 /win
parent9b8247edf3e58893eb3ecc38dbfb2805ff1bb83d (diff)
downloadopenvpn-343037a99708bd7785de10cc5be37a150609bd01.tar.gz
openvpn-343037a99708bd7785de10cc5be37a150609bd01.tar.xz
openvpn-343037a99708bd7785de10cc5be37a150609bd01.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>
Diffstat (limited to 'win')
-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')