diff options
author | Chris Larson <clarson@kergoth.com> | 2004-01-16 04:13:14 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-01-16 04:13:14 +0000 |
commit | 02509862ac62ff1a96e1a1768cb75b7e96cc0dbb (patch) | |
tree | 814da4974c4706ba6a50051fcad723d491697061 /cyrus-sasl/cyrus-sasl_2.1.15.oe | |
parent | c6d4483851a1ef3ffc88daaf32dd681a3f7a2430 (diff) |
BUGFIX: correct the do_stage method of the cyrus-sasl builds, in preparation for fixing the cyrus-imapd builds.
BKrev: 400764dalxI1pKVuIgj8EoJMXyz5Vg
Diffstat (limited to 'cyrus-sasl/cyrus-sasl_2.1.15.oe')
-rw-r--r-- | cyrus-sasl/cyrus-sasl_2.1.15.oe | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/cyrus-sasl/cyrus-sasl_2.1.15.oe b/cyrus-sasl/cyrus-sasl_2.1.15.oe index 086fabc03d..e244577713 100644 --- a/cyrus-sasl/cyrus-sasl_2.1.15.oe +++ b/cyrus-sasl/cyrus-sasl_2.1.15.oe @@ -4,11 +4,11 @@ RDEPENDS = libc6 SRC_URI = ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/OLD-VERSIONS/sasl/cyrus-sasl-${PV}.tar.gz \ file://${FILESDIR}/configure.patch;patch=1 -inherit autotools +inherit autotools libtool acpaths=-I ${S}/cmulocal -I ${S}/config -I . CFLAGS_append = ' -I${S}/include -I${S}/saslauthd/include' -EXTRA_OECONF = --enable-shared +EXTRA_OECONF = --enable-shared --enable-static do_compile_prepend () { set -e cd include @@ -18,8 +18,11 @@ do_compile_prepend () { } do_stage () { - install -m 0644 lib/libsasl2.la ${STAGING_LIBDIR}/ - install -m 0644 lib/libsasl2.a ${STAGING_LIBDIR}/ + install -m 0644 lib/.libs/libsasl2.lai ${STAGING_LIBDIR}/libsasl2.la + install -m 0644 lib/.libs/libsasl2.a ${STAGING_LIBDIR}/libsasl2.a + install -m 0755 lib/.libs/libsasl2.so.2.0.15 ${STAGING_LIBDIR}/libsasl2.so.2.0.15 + ln -sf libsasl2.so.2.0.15 ${STAGING_LIBDIR}/libsasl2.so.2 + ln -sf libsasl2.so.2.0.15 ${STAGING_LIBDIR}/libsasl2.so install -d ${STAGING_LIBDIR}/sasl install -d ${STAGING_DIR}/target/include/sasl install -m 0644 include/hmac-md5.h ${STAGING_DIR}/target/include/sasl/ |