From: stevenknight Date: Fri, 14 Sep 2001 02:59:10 +0000 (+0000) Subject: Make -w and --no-print-directory future options. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ac85167b183a14fc62ff442bae9dc6a95833c044;p=scons.git Make -w and --no-print-directory future options. git-svn-id: http://scons.tigris.org/svn/scons/trunk@47 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/src/scons.py b/src/scons.py index b08b7868..78cfece4 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.")