diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-05-01 15:32:11 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-05-01 15:32:11 -0400 |
| commit | 183fda75df4a48ad28a88694d2b2d4a46e0e662b (patch) | |
| tree | 5c8fd2a6f3041b755badc83cf4c806e1ec29ebe0 /src/tomo.c | |
| parent | 639f0722f2507e875b02e206b4f53ef70f99d8bd (diff) | |
Don't check result of debugedit command
Diffstat (limited to 'src/tomo.c')
| -rw-r--r-- | src/tomo.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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"); } |
