Browse Source

gluon-core: make gluon.platform.match() match all boards when no boards are given

Matthias Schiffer 8 years ago
parent
commit
dc485f7356
1 changed files with 1 additions and 1 deletions
  1. 1 1
      package/gluon-core/files/usr/lib/lua/gluon/platform.lua

+ 1 - 1
package/gluon-core/files/usr/lib/lua/gluon/platform.lua

@@ -21,7 +21,7 @@ function match(target, subtarget, boards)
       return false
    end
 
-   if not util.contains(boards, get_board_name()) then
+   if boards and not util.contains(boards, get_board_name()) then
       return false
    end