[rtems commit] bootstrap: Fix bug where BSPs were not picked up

Joel Sherrill joel at rtems.org
Fri Jan 5 17:01:48 UTC 2018


Module:    rtems
Branch:    master
Commit:    31285e1ed4695f98af84b25383b74cea6a4af259
Changeset: http://git.rtems.org/rtems/commit/?id=31285e1ed4695f98af84b25383b74cea6a4af259

Author:    Joel Sherrill <joel at rtems.org>
Date:      Fri Jan  5 11:01:37 2018 -0600

bootstrap: Fix bug where BSPs were not picked up

---

 bootstrap | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bootstrap b/bootstrap
index 391e848..4db57e0 100755
--- a/bootstrap
+++ b/bootstrap
@@ -42,7 +42,7 @@ AC_DEFUN([RTEMS_CHECK_BSPDIR],
   case "\$1" in
 EOF
 
-for i in `ls -1 */make | grep make | LANG=C LC_COLLATE=C sort`; do
+for i in `echo */make | tr " " "\n" | LANG=C LC_COLLATE=C sort`; do
   d=`dirname $i`
 cat << EOF >> acinclude.m4~
   $d )




More information about the vc mailing list