aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tomo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tomo.c b/src/tomo.c
index 7b68e016..ba7f7f54 100644
--- a/src/tomo.c
+++ b/src/tomo.c
@@ -506,10 +506,10 @@ void install_library(Path_t lib_dir)
// If we have `debugedit` on this system, use it to remap the debugging source information
// to point to the installed version of the source file. Otherwise, fail silently.
if (verbose) whisper("Updating debug symbols for ", dest, "/lib", lib_dir_name, SHARED_SUFFIX);
- xsystem("debugedit -b ", lib_dir,
- " -d '", dest, "'"
- " '", dest, "/lib", lib_dir_name, SHARED_SUFFIX, "'"
- " 2>/dev/null >/dev/null");
+ (void)system("debugedit -b ", lib_dir,
+ " -d '", dest, "'"
+ " '", dest, "/lib", lib_dir_name, SHARED_SUFFIX, "'"
+ " 2>/dev/null >/dev/null");
print("Installed \033[1m", lib_dir_name, "\033[m to "TOMO_HOME"/installed");
}