From 96145d5fdc0d695414f200c2afa372818f4857df Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 30 Dec 2019 16:01:31 -0500 Subject: 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 --- include/spm.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/spm.h') 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); -- cgit