From 70a70b9da347d7ef25a9862af83731b9b0a0d3f1 Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 27 Jun 2017 12:37:47 +0200 Subject: build: replace glob() check and assume it's always in POSIX POSIX requires glob(), so no need to check for it. Together with the fact that we can emulate glob() on Windows, glob() is always available. --- wscript_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wscript_build.py') diff --git a/wscript_build.py b/wscript_build.py index 38281ceac7..39c31fe697 100644 --- a/wscript_build.py +++ b/wscript_build.py @@ -432,7 +432,7 @@ def build(ctx): ( "osdep/path-unix.c"), ( "osdep/path-win.c", "os-win32" ), ( "osdep/path-win.c", "os-cygwin" ), - ( "osdep/glob-win.c", "glob-win32-replacement" ), + ( "osdep/glob-win.c", "glob-win32" ), ( "osdep/w32_keyboard.c", "os-win32" ), ( "osdep/w32_keyboard.c", "os-cygwin" ), ( "osdep/windows_utils.c", "win32" ), -- cgit v1.2.3