diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-12-30 16:01:31 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-12-30 16:01:31 -0500 |
commit | 96145d5fdc0d695414f200c2afa372818f4857df (patch) | |
tree | 84747df601a2f3688cefe15eaf9fbfe411e891c8 /include/spm.h | |
parent | d0e254663e64e40b676644038a9d7c95a2f25116 (diff) | |
download | spmc-96145d5fdc0d695414f200c2afa372818f4857df.tar.gz |
Fixes
* Verbosity++
* If no requirements are present do not to report we are installing some
* Redirect all shell output to stderr (need a better way)
* implemented file_is_binexec() to avoid running patchelf on generic data files
Diffstat (limited to 'include/spm.h')
-rw-r--r-- | include/spm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/spm.h b/include/spm.h index 59fad07..eb6b95f 100644 --- a/include/spm.h +++ b/include/spm.h @@ -256,6 +256,7 @@ void mime_free(Mime *m); int build(int bargc, char **bargv); int file_is_binary(const char *filename); int file_is_text(const char *filename); +int file_is_binexec(const char *filename); // internal_cmd.c int internal_cmd(int argc, char **argv); |