summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-09-14 02:59:10 (GMT)
committerSteven Knight <knight@baldmt.com>2001-09-14 02:59:10 (GMT)
commit80146a665b3c939bd333b982af6b3aed2db0f426 (patch)
tree9f3f58c1bb2df84ee24760e2d01b928e4b2633c6 /src
parent2ce8c28159f0e88494883f61cd05d1342fe90201 (diff)
downloadSCons-80146a665b3c939bd333b982af6b3aed2db0f426.zip
SCons-80146a665b3c939bd333b982af6b3aed2db0f426.tar.gz
SCons-80146a665b3c939bd333b982af6b3aed2db0f426.tar.bz2
Make -w and --no-print-directory future options.
Diffstat (limited to 'src')
-rw-r--r--src/scons.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scons.py b/src/scons.py
index b08b786..78cfece 100644
--- a/src/scons.py
+++ b/src/scons.py
@@ -411,11 +411,11 @@ def options_init():
short = 'v', long = ['version'],
help = "Print the SCons version number and exit.")
- Option(func = opt_not_yet,
+ Option(func = opt_not_yet, future = 1,
short = 'w', long = ['print-directory'],
help = "Print the current directory.")
- Option(func = opt_not_yet,
+ Option(func = opt_not_yet, future = 1,
long = ['no-print-directory'],
help = "Turn off -w, even if it was turned on implicitly.")