summaryrefslogtreecommitdiff
path: root/src/wx/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/wscript')
-rw-r--r--src/wx/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/wscript b/src/wx/wscript
index 8dc3e972e..b78ccc928 100644
--- a/src/wx/wscript
+++ b/src/wx/wscript
@@ -100,7 +100,7 @@ sources = """
def configure(conf):
try:
wx_config = 'wx-config-3.0-gtk2'
- conf.check_cfg(msg='Checking for wxWidgets',
+ conf.check_cfg(msg='Checking for wxWidgets using wx-config-3.0-gtk2',
package='',
path=wx_config,
args='--cppflags --cxxflags --libs std,richtext',
@@ -108,7 +108,7 @@ def configure(conf):
mandatory=True)
except:
wx_config = 'wx-config'
- conf.check_cfg(msg='Checking for wxWidgets',
+ conf.check_cfg(msg='Checking for wxWidgets using wx-config',
package='',
path=wx_config,
args='--cppflags --cxxflags --libs std,richtext',