Date:2012-08-04 02:02:34 (11 years 7 months ago)
Author:Werner Almesberger
Commit:8f80a595d8d0bc4f7aea60978b1d09384472b0c3
Message:scripts/missing-in-tree: fix -L dir; clean up use of extension

Files: scripts/missing-in-tree (1 diff)

Change Details

scripts/missing-in-tree
3838
3939genkicat -D "$@" >_tmp1 || exit
4040
41ext=.lib
41ext=lib
4242
4343>_tmp2
4444while [ "$1" ]; do
4545    case "$1" in
46    -F) ext=.fpd;;
46    -F) ext=fpd;;
4747    -L) shift
48        [ "`echo \"$1\"/*.$ext`" = "$1/*.$ext" ] ||
49            scan_lib "$1"/*.$ext;;
48        if [ "`echo \"$1\"/*.$ext`" != "$1/*.$ext" ]; then
49            if [ $ext = lib ]; then
50                scan_comp "$1"/*.$ext
51            else
52                scan_fped "$1"/*.$ext
53            fi
54        fi;;
5055    -l) shift
51        if [ $ext = .lib ]; then
56        if [ $ext = lib ]; then
5257            scan_comp "$1"
5358        else
5459            scan_fped "$1"

Archive Download the corresponding diff file

Branches:
master



interactive