summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/gbuild-to-ide4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide
index 865a0b86f773..c12d48eb1f30 100755
--- a/bin/gbuild-to-ide
+++ b/bin/gbuild-to-ide
@@ -117,7 +117,7 @@ class GbuildParser:
if libmatch:
libname = self.libnames.get(state.ilib, None)
if libname != None:
- print('add Library: %s' % libname, end='\n')
+ print('add Library: %s' % libname, end='\n')
self.libs.append(
GbuildLib(libmatch.group(2), libname, libmatch.group(1),
state.include, state.include_sys, state.defs, state.cxxobjects,
@@ -128,7 +128,7 @@ class GbuildParser:
if exematch:
exename = self.exenames.get(state.target, None)
if exename != None:
- print('add Executable: %s' % exename, end='\n')
+ print('add Executable: %s' % exename, end='\n')
self.exes.append(
GbuildExe(exematch.group(2), exename, exematch.group(1),
state.include, state.include_sys, state.defs, state.cxxobjects,