summaryrefslogtreecommitdiffstats
path: root/recipes-devtools
diff options
context:
space:
mode:
authorAndrei Gherzan <andrei@gherzan.ro>2016-09-16 17:29:59 +0100
committerAndrei Gherzan <andrei@gherzan.ro>2016-09-21 11:38:22 +0100
commit5771c7f7d4f0984141654d7208dcb7f1c67c37af (patch)
tree11a641cf3a9cb92053f15c9d59dc648ba8cf8e75 /recipes-devtools
parent1b2c25ee882b2d4d1dc71439053738de402c5488 (diff)
downloadmeta-raspberrypi-5771c7f7d4f0984141654d7208dcb7f1c67c37af.tar.gz
wiringpi: Fix prepend space
Not having this correctly will get you into troubles like: | gpio.c:40:23: fatal error: gertboard.h: No such file or directory | #include <gertboard.h> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
Diffstat (limited to 'recipes-devtools')
-rw-r--r--recipes-devtools/wiringPi/wiringpi_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-devtools/wiringPi/wiringpi_git.bb b/recipes-devtools/wiringPi/wiringpi_git.bb
index f2cacd3..c337b19 100644
--- a/recipes-devtools/wiringPi/wiringpi_git.bb
+++ b/recipes-devtools/wiringPi/wiringpi_git.bb
@@ -16,7 +16,7 @@ SRC_URI = "git://git.drogon.net/wiringPi \
16 16
17COMPATIBLE_MACHINE = "raspberrypi" 17COMPATIBLE_MACHINE = "raspberrypi"
18 18
19CFLAGS_prepend = "-I${S}/wiringPi -I${S}/devLib" 19CFLAGS_prepend = "-I${S}/wiringPi -I${S}/devLib "
20 20
21EXTRA_OEMAKE += "'INCLUDE_DIR=${D}${includedir}' 'LIB_DIR=${D}${libdir}'" 21EXTRA_OEMAKE += "'INCLUDE_DIR=${D}${includedir}' 'LIB_DIR=${D}${libdir}'"
22EXTRA_OEMAKE += "'DESTDIR=${D}/usr' 'PREFIX=""'" 22EXTRA_OEMAKE += "'DESTDIR=${D}/usr' 'PREFIX=""'"