diff options
author | Austin English <wizardedit@gentoo.org> | 2016-11-28 13:23:43 -0600 |
---|---|---|
committer | Austin English <wizardedit@gentoo.org> | 2016-11-28 13:27:13 -0600 |
commit | 4d7da7ac603f610fef687ea95357e7b727b19d03 (patch) | |
tree | 3016127c008748a0f00d064c74286d556883aa4f | |
parent | Prepare 0.2.0 release (diff) | |
download | eselect-java-4d7da7ac603f610fef687ea95357e7b727b19d03.tar.gz eselect-java-4d7da7ac603f610fef687ea95357e7b727b19d03.tar.bz2 eselect-java-4d7da7ac603f610fef687ea95357e7b727b19d03.zip |
src/scripts/run-java-tool.bash.in: replace `which` with `command -v`
which is an external binary and may not be installed on all systems.
command is a shell builtin, and more likely to be available.
Based on a patch by Manuel Rüger <mrueg@gentoo.org>
Gentoo-Bug: https://bugs.gentoo.org/599392
-rw-r--r-- | src/scripts/run-java-tool.bash.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/run-java-tool.bash.in b/src/scripts/run-java-tool.bash.in index 2587fee..67e4dba 100644 --- a/src/scripts/run-java-tool.bash.in +++ b/src/scripts/run-java-tool.bash.in @@ -26,7 +26,7 @@ toolpath=$( export PATH= . "@GENTOO_PORTAGE_EPREFIX@/usr/share/java-config-2/vm/${vm_handle}" 2> /dev/null : ${PATH:=${vmpath}/bin:${vmpath}/jre/bin} - "@GENTOO_PORTAGE_EPREFIX@/usr/bin/which" "${tool}" 2> /dev/null + command -v "${tool}" 2> /dev/null ) if [ -x "${toolpath}" ]; then |