about summary refs log tree commit diff
path: root/configure.ac
diff options
context:
space:
mode:
authorMartijn Dekker <martijn@inlv.org>2016-09-27 13:15:23 +0100
committerPeter Stephenson <pws@zsh.org>2016-09-28 11:26:32 +0100
commitedfdce9981550239675dcc2454ae50cbc8988db4 (patch)
tree437f83027f4c113875cccdd90a6c5f6b82be55c4 /configure.ac
parentb32d974000295a5fa0b0c981b3198f987d3177c4 (diff)
downloadzsh-edfdce9981550239675dcc2454ae50cbc8988db4.tar.gz
zsh-edfdce9981550239675dcc2454ae50cbc8988db4.tar.xz
zsh-edfdce9981550239675dcc2454ae50cbc8988db4.zip
39463: an additional test for default system path
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 0e0bd535a..e0eb3205e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2035,6 +2035,8 @@ AC_CACHE_VAL(zsh_cv_cs_path,
   zsh_cv_cs_path=`getconf _CS_PATH`
 elif getconf CS_PATH >/dev/null 2>&1; then
   zsh_cv_cs_path=`getconf CS_PATH`
+elif getconf PATH >/dev/null 2>&1; then
+  zsh_cv_cs_path=`getconf PATH`
 else
   zsh_cv_cs_path="/bin:/usr/bin"
 fi])