1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-11 13:01:28 +02:00

zsh-workers/9134

This commit is contained in:
Tanaka Akira 1999-12-22 16:16:49 +00:00
parent ab12e0db0c
commit 96e836b7df
4 changed files with 23 additions and 23 deletions

View file

@ -124,7 +124,7 @@ modules-bltin: Makefile
if test -f mymods.conf; then \
cat mymods.conf > $@; \
elif test @D@ = N; then \
cat $(sdir)/xmods.conf > $@; \
sed -n '/L.* /{s/^.* //;p;}' < $(sdir)/xmods.conf > $@; \
else \
echo > $@; \
fi

View file

@ -12,7 +12,7 @@ MODBINS=${MODBINS-modules-bltin}
XMODCF=${XMODCF-$srcdir/xmods.conf}
bin_mods=" zsh/main "`sed 's/^/ /;s/$/ /' $MODBINS`
x_mods=`cat $XMODCF`
x_mods=`sed 's/^.* //' $XMODCF`
. ./modules.index
trap "rm -f $1; exit 1" 1 2 15

View file

@ -1,29 +1,29 @@
zsh/rlimits
zsh/zle
zsh/complete
zsh/compctl
zsh/sched
zsh/complist
zsh/zutil
zsh/computil
zsh/parameter
zsh/zleparameter
L zsh/rlimits
L zsh/zle
L zsh/complete
L zsh/compctl
L zsh/sched
L zsh/complist
L zsh/zutil
L zsh/computil
L zsh/parameter
L zsh/zleparameter
cap
clone
compctl
complete
complist
computil
L compctl
L complete
L complist
L computil
deltochar
example
files
mapfile
mathfunc
parameter
rlimits
sched
L parameter
L rlimits
L sched
stat
zftp
zle
zleparameter
zutil
L zle
L zleparameter
L zutil

View file

@ -62,7 +62,7 @@ zshxmods.h: modules-bltin xmods.conf
@echo "Creating \`$@'."
@( \
binmods=`sed 's/^/ /;s/$$/ /' modules-bltin`; \
for mod in `cat $(sdir_src)/xmods.conf`; do \
for mod in `sed 's/^.* //' $(sdir_src)/xmods.conf`; do \
q_mod=`echo $$mod | sed 's,Q,Qq,g;s,_,Qu,g;s,/,Qs,g'`; \
case $$binmods in \
*" $$mod "*) \