summaryrefslogtreecommitdiff
path: root/debian/patches/no_commandline_arguments.patch
blob: 3941f00dc0b94c4bd841cca3a201b0328cf84da8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description:	Fix an exception when a null command-line argument is passed in
Origin:		Ubuntu
Bug-Ubuntu:	https://launchpad.net/bugs/338492
Forwarded:	http://scons.tigris.org/issues/show_bug.cgi?id=2368

Index: scons-1.2.0/engine/SCons/Script/Main.py
===================================================================
--- scons-1.2.0.orig/engine/SCons/Script/Main.py	2009-03-06 08:13:35.000000000 +0000
+++ scons-1.2.0/engine/SCons/Script/Main.py	2009-03-06 08:13:57.000000000 +0000
@@ -869,7 +869,7 @@
     targets = []
     xmit_args = []
     for a in parser.largs:
-        if a[0] == '-':
+        if a[:1] == '-':
             continue
         if '=' in a:
             xmit_args.append(a)