Make -w and --no-print-directory future options.
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Fri, 14 Sep 2001 02:59:10 +0000 (02:59 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Fri, 14 Sep 2001 02:59:10 +0000 (02:59 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@47 fdb21ef1-2011-0410-befe-b5e4ea1792b1

src/scons.py

index b08b786817563f9bb535941382bff36f116bbde6..78cfece43f43c95f186c743f675eccc10ce8240a 100644 (file)
@@ -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.")