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 --- src/internal_cmd.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/internal_cmd.c') diff --git a/src/internal_cmd.c b/src/internal_cmd.c index 38456cf..3801fda 100644 --- a/src/internal_cmd.c +++ b/src/internal_cmd.c @@ -84,9 +84,6 @@ void rpath_set_interface_usage(void) { * @return */ int rpath_set_interface(int argc, char **argv) { - for (int i = 0; i < argc; i++) { - printf("argv[%d] = %s\n", i, argv[i]); - } if (argc < 3) { rpath_set_interface_usage(); return -1; -- cgit