From 2b584dbb527230f44bb61eb83428c80d5e938e0c Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Thu, 08 May 2014 20:57:53 -0400 Subject: ob_match_plat(): Add missing platform check. This will be necessary to build the linux-libre source package for the dev platform without building linux-image and linux-sysmap binary packages. --- (limited to 'lib') diff --git a/lib/metadata.sh b/lib/metadata.sh index 7a6a9e7..7a7a926 100644 --- a/lib/metadata.sh +++ b/lib/metadata.sh @@ -193,6 +193,9 @@ ob_match_plat() if [ "${p}" = 'any' ]; then return 0 fi + if [ "${p}" = "${plat}" ]; then + return 0 + fi done return 1 -- cgit v0.9.1