--- trunk/installer/hwdetection.sh 2007/09/06 10:35:46 572 +++ trunk/installer/hwdetection.sh 2007/09/12 18:36:50 573 @@ -65,7 +65,11 @@ done # remove all ':' and show the cleaned list - echo "${fixed_list}" | sed "s|:| |g" + # this way fixes double spaces also + for i in $(echo ${fixed_list} | sed "s|:| |g") + do + echo "${i}" + done } get_x11_driver_modules()