aboutsummaryrefslogtreecommitdiff
path: root/src/tomo.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-05-01 15:32:11 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-05-01 15:32:11 -0400
commit183fda75df4a48ad28a88694d2b2d4a46e0e662b (patch)
tree5c8fd2a6f3041b755badc83cf4c806e1ec29ebe0 /src/tomo.c
parent639f0722f2507e875b02e206b4f53ef70f99d8bd (diff)
Don't check result of debugedit command
Diffstat (limited to 'src/tomo.c')
-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");
}