aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nasm
diff options
context:
space:
mode:
authorMichael Smith <msmith@cbnco.com>2009-08-17 03:29:01 +0000
committerHolger Hans Peter Freyther <zecke@selfish.org>2009-08-18 16:12:56 +0200
commit76b6179494fba8599f2cb842c63c2d47a3ec88f2 (patch)
treec6ed74f5dcca8be4e8580b085ce2690edf726916 /recipes/nasm
parent7861be0ddd3e7a8c1ea0d6f26daa651efe4c9481 (diff)
downloadopenembedded-76b6179494fba8599f2cb842c63c2d47a3ec88f2.tar.gz
nasm: fix COMPATIBLE_HOST to match any vendor
On x86_64, it was looking for x86_64-linux, not x86_64-blah-linux; it broke the build for syslinux if a BUILD_VENDOR was set. Signed-off-by: Michael Smith <msmith@cbnco.com> Signed-off-by: Holger Hans Peter Freyther <zecke@selfish.org>
Diffstat (limited to 'recipes/nasm')
-rw-r--r--recipes/nasm/nasm_0.98.38.bb3
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes/nasm/nasm_0.98.38.bb b/recipes/nasm/nasm_0.98.38.bb
index 86e7f2b935..abe47fe660 100644
--- a/recipes/nasm/nasm_0.98.38.bb
+++ b/recipes/nasm/nasm_0.98.38.bb
@@ -1,7 +1,8 @@
DESCRIPTION = "General-purpose x86 assembler"
SECTION = "devel"
LICENSE = "GPL"
-COMPATIBLE_HOST = '(x86_64|i.86.*)-(linux|freebsd.*)'
+COMPATIBLE_HOST = '(x86_64|i.86).*-(linux|freebsd.*)'
+PR = "r1"
SRC_URI = "${SOURCEFORGE_MIRROR}/nasm/nasm-${PV}.tar.bz2"