summaryrefslogtreecommitdiffstats
path: root/kde.py
diff options
context:
space:
mode:
Diffstat (limited to 'kde.py')
-rw-r--r--kde.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/kde.py b/kde.py
index caac511..02a7644 100644
--- a/kde.py
+++ b/kde.py
@@ -412,10 +412,10 @@ ie: """+BOLD+"""scons configure libdir=/usr/local/lib qtincludes=/usr/include/qt
Builder = SCons.Builder.Builder
# Detect the environment - replaces ./configure implicitely and store the options into a cache
- from SCons.Options import Options
+ from SCons.Variables import Variables
cachefile=env['CACHEDIR']+'kde.cache.py'
- opts = Options(cachefile)
- opts.AddOptions(
+ opts = Variables(cachefile)
+ opts.AddVariables(
('PREFIX', 'root of the program installation'),
('TQTDIR', 'root of qt directory'),