diff mbox

package/mraa: disable tests build

Message ID 1456599856-11995-1-git-send-email-romain.naour@gmail.com
State Accepted
Commit 6855f7ff2675de9cce69547a4da2bcf92fda9592
Headers show

Commit Message

Romain Naour Feb. 27, 2016, 7:04 p.m. UTC
mraa build system is looking for a python interpreter >= 2.7 on the host due to
a typo in MRAA_CONF_OPTS. We must use -DBUILDTESTS=OFF instead of -DTESTS=OFF.

Fixes:
http://autobuild.buildroot.net/results/5f0/5f047c4c28b34f6b1bf2306a2b00bcc6a7481c01

Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
 package/mraa/mraa.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Peter Korsgaard Feb. 27, 2016, 10:28 p.m. UTC | #1
>>>>> "Romain" == Romain Naour <romain.naour@gmail.com> writes:

 > mraa build system is looking for a python interpreter >= 2.7 on the host due to
 > a typo in MRAA_CONF_OPTS. We must use -DBUILDTESTS=OFF instead of -DTESTS=OFF.

 > Fixes:
 > http://autobuild.buildroot.net/results/5f0/5f047c4c28b34f6b1bf2306a2b00bcc6a7481c01

 > Signed-off-by: Romain Naour <romain.naour@gmail.com>

Committed, thanks.
diff mbox

Patch

diff --git a/package/mraa/mraa.mk b/package/mraa/mraa.mk
index 8c7dbc4..42cc2e3 100644
--- a/package/mraa/mraa.mk
+++ b/package/mraa/mraa.mk
@@ -20,6 +20,6 @@  MRAA_CONF_OPTS += \
 	-DIPK=OFF \
 	-DRPM=OFF \
 	-DENABLEEXAMPLES=OFF \
-	-DTESTS=OFF
+	-DBUILDTESTS=OFF
 
 $(eval $(cmake-package))