From 214d027f0d92d1d042451765e875f0a84c3fa37d Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 21 Mar 2014 01:28:35 -0400 Subject: which: punt! This code is only used by --install, and only when /proc/self/exe does not work. We rarely utilize --install, and it's rare for /proc to be broken in a way we can't rely on. So having this func just for that does not make much sense. Even then, the code was not correct. It walked $PATH in reverse order (when it should have been forward order), and it would abort scanning beofre it checked the first element. It also doesn't support empty path elements (which is supposed to be $PWD). If we want a which() in the future, we can grab the updated version from Gentoo's pax-utils project. --- Makefile.am | 1 - 1 file changed, 1 deletion(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index ed5c184..14bc649 100644 --- a/Makefile.am +++ b/Makefile.am @@ -112,7 +112,6 @@ EXTRA_DIST += \ libq/vdb.c \ libq/vdb_get_next_dir.c \ libq/virtuals.c \ - libq/which.c \ libq/xarray.c \ libq/xasprintf.c \ libq/xchdir.c \ -- cgit v1.2.3-65-gdbad