Skip to content

Commit

Permalink
Fix rtems-bsps for GNU find hosts.
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwichris committed Dec 16, 2015
1 parent 07b76fd commit 6470d02
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions rtems-bsps
Expand Up @@ -5,13 +5,12 @@ base_e=$(echo ${base} | sed -e 's/\//\\\//g')

last_arch=""

cfg_list=$(LANG=C LC_COLLATE=C find ${base} -name \*.cfg -depth 5 | sort)
cfg_list=$(LANG=C LC_COLLATE=C find ${base} -depth 5 -name \*.cfg | sort)

max_bsp_len=0
arch_count=0
bsp_count=0

#set -x
for bsp_path in ${cfg_list};
do
arch=$(echo ${bsp_path} | sed -e "s/${base_e}*\///" -e 's/\/.*//')
Expand Down

0 comments on commit 6470d02

Please sign in to comment.