Kaydet (Commit) 7d92b27a authored tarafından Maxim Monastirsky's avatar Maxim Monastirsky

Clean trailing whitespace

Change-Id: I3b4adb5ac75b9761ae058834e3e64779a07851c9
üst 7f4e0d6a
...@@ -117,7 +117,7 @@ class GbuildParser: ...@@ -117,7 +117,7 @@ class GbuildParser:
if libmatch: if libmatch:
libname = self.libnames.get(state.ilib, None) libname = self.libnames.get(state.ilib, None)
if libname != None: if libname != None:
print('add Library: %s' % libname, end='\n') print('add Library: %s' % libname, end='\n')
self.libs.append( self.libs.append(
GbuildLib(libmatch.group(2), libname, libmatch.group(1), GbuildLib(libmatch.group(2), libname, libmatch.group(1),
state.include, state.include_sys, state.defs, state.cxxobjects, state.include, state.include_sys, state.defs, state.cxxobjects,
...@@ -128,7 +128,7 @@ class GbuildParser: ...@@ -128,7 +128,7 @@ class GbuildParser:
if exematch: if exematch:
exename = self.exenames.get(state.target, None) exename = self.exenames.get(state.target, None)
if exename != None: if exename != None:
print('add Executable: %s' % exename, end='\n') print('add Executable: %s' % exename, end='\n')
self.exes.append( self.exes.append(
GbuildExe(exematch.group(2), exename, exematch.group(1), GbuildExe(exematch.group(2), exename, exematch.group(1),
state.include, state.include_sys, state.defs, state.cxxobjects, state.include, state.include_sys, state.defs, state.cxxobjects,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment