SOURCES: kernel-config.py - well actually, require inline symbol n...

glen glen at pld-linux.org
Tue Jan 29 15:04:05 CET 2008


Author: glen                         Date: Tue Jan 29 14:04:05 2008 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- well actually, require inline symbol name at least one char long

---- Files affected:
SOURCES:
   kernel-config.py (1.10 -> 1.11) 

---- Diffs:

================================================================
Index: SOURCES/kernel-config.py
diff -u SOURCES/kernel-config.py:1.10 SOURCES/kernel-config.py:1.11
--- SOURCES/kernel-config.py:1.10	Tue Jan 29 14:48:30 2008
+++ SOURCES/kernel-config.py	Tue Jan 29 15:03:59 2008
@@ -99,7 +99,7 @@
         continue
 
     # inline symbols: for current arch, duplicates allowed
-    if symbol.find('=') >= 0:
+    if symbol.find('=') > 0:
         (symbol, value) = symbol.split('=')
         dict[symbol] = value
         continue
================================================================

---- CVS-web:
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/kernel-config.py?r1=1.10&r2=1.11&f=u



More information about the pld-cvs-commit mailing list