Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

PATCH: nitpick



I'm trying to figure out whether the Scripts directory should be created
by 'make install' or whether it should not be in $fpath.  So I changed
this instead.

Index: Config/installfns.sh
===================================================================
RCS file: /cvsroot/zsh/zsh/Config/installfns.sh,v
retrieving revision 1.11
diff -u -r1.11 installfns.sh
--- Config/installfns.sh	20 Jul 2005 18:08:53 -0000	1.11
+++ Config/installfns.sh	24 Jul 2005 03:05:30 -0000
@@ -17,7 +17,7 @@
     case "$file" in
       */CVS/*) continue;;
     esac
-    if test x$FUNCTIONS_SUBDIRS != x -a x$FUNCTIONS_SUBDIRS != xno; then
+    if test x$FUNCTIONS_SUBDIRS != x && test x$FUNCTIONS_SUBDIRS != xno; then
       case "$file" in
       Completion/*/*)
         subdir="`echo $file | sed -e 's%/[^/]*/[^/]*$%%'`"



Messages sorted by: Reverse Date, Date, Thread, Author