diff options
Diffstat (limited to 'Src')
-rw-r--r-- | Src/mkbltnmlst.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Src/mkbltnmlst.sh b/Src/mkbltnmlst.sh index 94043cb9c..a5dd8fc33 100644 --- a/Src/mkbltnmlst.sh +++ b/Src/mkbltnmlst.sh @@ -34,6 +34,7 @@ for x_mod in $x_mods; do 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 x_mod in $x_mods; do for dep in $moddeps; do echo " add_dep(\"$x_mod\", \"$dep\");" done + fi test "x$linked" = xno && echo "#endif" done |