From de50539c026391bb7da789fc0d2c2fd38edb336f Mon Sep 17 00:00:00 2001 From: npilon Date: Mon, 13 Mar 2006 11:44:58 +1000 Subject: [PATCH] gettext detection fix The current method of gettext detection is broken on (at least) OS X and Solaris, where which always returns successfully. This method seems to work on Linux, OS X, and Solaris. darcs-hash:20060313014458-c90d9-8b169581a8632b6a47c61310ef3c976abd67d8e0.gz --- share/functions/_.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/functions/_.fish b/share/functions/_.fish index 33fdd43e1..a1404761e 100644 --- a/share/functions/_.fish +++ b/share/functions/_.fish @@ -3,7 +3,7 @@ # Alias for gettext (or a fallback if gettext isn't installed) # -if which gettext ^/dev/null >/dev/null +if test -x (which gettext) ^/dev/null >/dev/null function _ -d "Alias for the gettext command" gettext fish $argv end