From 1dedf0e20888c1d7dc7e6e90e9679d89e4af409a Mon Sep 17 00:00:00 2001 From: mittorn Date: Thu, 4 Oct 2018 12:15:05 +0700 Subject: [PATCH] Fix tab in wscript --- vgui_support/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vgui_support/wscript b/vgui_support/wscript index 66dcaeae..ed2b8b9c 100644 --- a/vgui_support/wscript +++ b/vgui_support/wscript @@ -40,7 +40,7 @@ def configure(conf): else: conf.fatal('vgui is not supported on this OS: ' + conf.env.DEST_OS) conf.env.LIBPATH_VGUI = [os.path.abspath(os.path.join(conf.options.VGUI_DEV, 'lib'))] - conf.env.INCLUDES_VGUI = [os.path.abspath(os.path.join(conf.options.VGUI_DEV, 'include'))] + conf.env.INCLUDES_VGUI = [os.path.abspath(os.path.join(conf.options.VGUI_DEV, 'include'))] conf.env.HAVE_VGUI = 1 conf.end_msg('yes: {0}, {1}, {2}'.format(conf.env.LIB_VGUI, conf.env.LIBPATH_VGUI, conf.env.INCLUDES_VGUI))