diff options
author | Gerald Britton <gbritton@doomcom.org> | 2004-05-04 04:27:39 +0000 |
---|---|---|
committer | Gerald Britton <gbritton@doomcom.org> | 2004-05-04 04:27:39 +0000 |
commit | 82641f0aa39af760a9126699046d92f7688a3cd5 (patch) | |
tree | 7fb7f771af115141d66affb3e57bc0a4c3b6581e /jpeg | |
parent | adc07b87371fb901ce4d64b7e480714203fc88c8 (diff) |
fix jpeg build failure due to missing libtool
BKrev: 40971bbbSDZo1Bqa1y9Sd5K83OgVaA
Diffstat (limited to 'jpeg')
-rw-r--r-- | jpeg/jpeg_6b.oe | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/jpeg/jpeg_6b.oe b/jpeg/jpeg_6b.oe index 7063348df6..13963e2c3f 100644 --- a/jpeg/jpeg_6b.oe +++ b/jpeg/jpeg_6b.oe @@ -14,6 +14,12 @@ EXTRA_OECONF="--enable-static --enable-shared" CFLAGS_append = " -D_REENTRANT" +# This doesn't seem to exist, we need it to for our libtool.oeclass +# to work properly, ensure that it does exist. +do_configure_prepend() { + touch ${S}/libtool +} + do_stage() { install -m 644 jconfig.h ${STAGING_INCDIR}/jconfig.h install -m 644 jpeglib.h ${STAGING_INCDIR}/jpeglib.h |