Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
mkbltnmlst.sh sources directories.
- X-seq: zsh-workers 9101
- From: Tanaka Akira <akr@xxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxxxxxx
- Subject: mkbltnmlst.sh sources directories.
- Date: 17 Dec 1999 22:23:01 +0900
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
mkbltnmlst.sh sources directories as:
make[1]: Entering directory `/home/akr/src/zsh/cvs/zsh/Src'
srcdir='.' MODBINS='modules-bltin' \
XMODCF='./xmods.conf' /bin/sh ./mkbltnmlst.sh bltinmods.list
./mkbltnmlst.sh: .: ./../: is a directory
...
Note that this result is on linux. On Solaris 7, /bin/sh actualy
sources a directory and generates messy errors:
srcdir='.' MODBINS='modules-bltin' \
XMODCF='./xmods.conf' /bin/sh ./mkbltnmlst.sh bltinmods.list
./mkbltnmlst.sh: ^Dku^L^A.^A^F^[^L^B..^Dzl^L^CCVS^Dkv^X^MChangeLog.3.0^Dkw^T: not found
./mkbltnmlst.sh: .cvsignore^Dkx^T: not found
...
Is this fix correct?
Index: mkbltnmlst.sh
===================================================================
RCS file: /projects/zsh/zsh/Src/mkbltnmlst.sh,v
retrieving revision 1.1.1.11
diff -u -r1.1.1.11 mkbltnmlst.sh
--- mkbltnmlst.sh 1999/12/16 14:26:33 1.1.1.11
+++ mkbltnmlst.sh 1999/12/17 13:15:14
@@ -34,6 +34,7 @@
eval "modfile=\$modfile_$q_x_mod"
unset moddeps autobins autoinfixconds autoprefixconds autoparams
unset automathfuncs
+ if [ -f $srcdir/../$modfile ]; then
. $srcdir/../$modfile
for bin in $autobins; do
echo " add_autobin(\"$bin\", \"$x_mod\");"
@@ -53,6 +54,7 @@
for dep in $moddeps; do
echo " add_dep(\"$x_mod\", \"$dep\");"
done
+ fi
test "x$linked" = xno && echo "#endif"
done
--
Tanaka Akira
Messages sorted by:
Reverse Date,
Date,
Thread,
Author