Skip to content

Commit

Permalink
17714: Fix to 17357, add module dependencies even if not adding autol…
Browse files Browse the repository at this point in the history
…oads.
  • Loading branch information
Bart Schaefer committed Oct 6, 2002
1 parent 49e5f81 commit fbc08ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Src/mkbltnmlst.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ trap "rm -f $1; exit 1" 1 2 15

exec > $1

echo " if (emulation == EMULATE_ZSH) {"
for x_mod in $x_mods; do
modfile="`grep '^name='$x_mod' ' $CFMOD | sed -e 's/^.* modfile=//' \
-e 's/ .*//'`"
Expand All @@ -41,6 +40,7 @@ for x_mod in $x_mods; do
unset moddeps autobins autoinfixconds autoprefixconds autoparams
unset automathfuncs
. $srcdir/../$modfile
echo " if (emulation == EMULATE_ZSH) {"
for bin in $autobins; do
echo " add_autobin(\"$bin\", \"$x_mod\");"
done
Expand All @@ -56,12 +56,12 @@ for x_mod in $x_mods; do
for mfunc in $automathfuncs; do
echo " add_automath(\"$mfunc\", \"$x_mod\");"
done
echo " }"
for dep in $moddeps; do
echo " add_dep(\"$x_mod\", \"$dep\");"
echo " add_dep(\"$x_mod\", \"$dep\");"
done
test "x$linked" = xno && echo "#endif"
done
echo " }"

echo
done_mods=" "
Expand Down

0 comments on commit fbc08ff

Please sign in to comment.