diff options
author | Samuli Seppänen <samuli@openvpn.net> | 2011-04-14 17:43:40 +0300 |
---|---|---|
committer | David Sommerseth <dazo@users.sourceforge.net> | 2011-04-14 21:17:58 +0200 |
commit | f71233577e573c5d1dc0cd711b7b78867a7853be (patch) | |
tree | 1795863c89e851d9ef03dc879978fda27a6fb54d /win/make_dist.py | |
parent | Removed Win2k from supported platforms list in INSTALL and win/openvpn.nsi (diff) | |
download | openvpn-f71233577e573c5d1dc0cd711b7b78867a7853be.tar.xz |
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)
Diffstat (limited to '')
-rw-r--r-- | win/make_dist.py | 2 |
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') |