From f71233577e573c5d1dc0cd711b7b78867a7853be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuli=20Sepp=C3=A4nen?= Date: Thu, 14 Apr 2011 17:43:40 +0300 Subject: Fixed copying of tapinstall.exe to dist/bin when using prebuilt TAP-drivers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Samuli Seppänen Acked-by: David Sommerseth Signed-off-by: David Sommerseth (cherry picked from commit 343037a99708bd7785de10cc5be37a150609bd01) --- win/make_dist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'win/make_dist.py') 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') -- cgit v1.2.3