aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/nasm
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@windriver.com>2011-06-20 19:02:40 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-06-23 11:54:52 +0100
commit1e232db4f6e90577f75efabd279b6980277b9547 (patch)
tree656b66f0727b7941866b36c212b0e3ea8aa784b2 /meta/recipes-devtools/nasm
parent2499777a7f16e98e1e34ea22d2e6a3409e35915b (diff)
downloadopenembedded-core-contrib-1e232db4f6e90577f75efabd279b6980277b9547.tar.gz
nasm: Fix aclocal
The mv of aclocal.m4 can only occur once, or it will fail. On a re-run of configure this will fail. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Diffstat (limited to 'meta/recipes-devtools/nasm')
-rw-r--r--meta/recipes-devtools/nasm/nasm_2.07.bb6
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-devtools/nasm/nasm_2.07.bb b/meta/recipes-devtools/nasm/nasm_2.07.bb
index 69e3b7bfb4..9b75496f95 100644
--- a/meta/recipes-devtools/nasm/nasm_2.07.bb
+++ b/meta/recipes-devtools/nasm/nasm_2.07.bb
@@ -4,7 +4,7 @@ LICENSE = "BSD-2-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=d89d124974e487e5d64da6f1cd8acfbb"
COMPATIBLE_HOST = '(x86_64|i.86).*-(linux|freebsd.*)'
-PR = "r0"
+PR = "r1"
SRC_URI = "${SOURCEFORGE_MIRROR}/nasm/nasm-${PV}.tar.bz2 "
@@ -13,10 +13,12 @@ SRC_URI[sha256sum] = "ac70ee451c73d742c9ff830502e5f8b1f648b2abffa8fd00944243283b
inherit autotools
-do_configure_prepend () {
+do_patch_fixaclocal () {
mv aclocal.m4 acinclude.m4
}
+addtask do_patch_fixaclocal after do_patch before do_configure
+
do_install() {
install -d ${D}${bindir}
install -d ${D}${mandir}/man1
ef='#n171'>171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218