Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: nitpick
- X-seq: zsh-workers 21510
- From: Clint Adams <clint@xxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: PATCH: nitpick
- Date: Sat, 23 Jul 2005 23:12:49 -0400
- Mail-followup-to: zsh-workers@xxxxxxxxxx
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
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