summaryrefslogtreecommitdiff
path: root/SCons/Tool/qt.py
diff options
context:
space:
mode:
Diffstat (limited to 'SCons/Tool/qt.py')
-rw-r--r--SCons/Tool/qt.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/SCons/Tool/qt.py b/SCons/Tool/qt.py
index 8e34eb7cd..607b58d83 100644
--- a/SCons/Tool/qt.py
+++ b/SCons/Tool/qt.py
@@ -25,11 +25,14 @@
This is a fake tool to instruct any builds still referencing 'qt' instead
of the new 'qt3' or a newer QT builder how to fix their now broken build.
"""
-import SCons.Warnings
+import SCons.Errors
def generate(env):
- pass
+ raise SCons.Errors.UserError(
+ "Deprecated tool 'qt' renamed to 'qt3'. "
+ "Please update your build accordingly. "
+ "'qt3' will be removed entirely in a future release."
+ )
def exists(env):
return False
-