mirror of
https://github.com/OpenVPN/openvpn.git
synced 2025-05-09 05:31:05 +08:00
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)
This commit is contained in:
parent
8cf7903c31
commit
f71233577e
@ -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')
|
||||
|
Loading…
x
Reference in New Issue
Block a user