summaryrefslogtreecommitdiff
path: root/builder
diff options
context:
space:
mode:
Diffstat (limited to 'builder')
-rw-r--r--builder/builder-module.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/builder/builder-module.c b/builder/builder-module.c
index c92b14d..990ca9e 100644
--- a/builder/builder-module.c
+++ b/builder/builder-module.c
@@ -724,10 +724,11 @@ builder_module_handle_debuginfo (BuilderModule *self,
real_debug_path = g_build_filename (real_debug_dir, filename_debug, NULL);
g_print ("stripping %s to %s\n", path, debug_path);
- eu_strip (error, "--remove-comment", "--reloc-debug-sections",
- "-f", debug_path,
- "-F", real_debug_path,
- path, NULL);
+ if (!eu_strip (error, "--remove-comment", "--reloc-debug-sections",
+ "-f", debug_path,
+ "-F", real_debug_path,
+ path, NULL))
+ return FALSE;
}
}
}