diff options
| author | Khem Raj <raj.khem@gmail.com> | 2021-02-07 19:42:28 -0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2021-02-08 10:17:23 -0800 |
| commit | 6f3bc88294062b01a2f758e1483ea9726203b60c (patch) | |
| tree | 9a85c98118dccbfc7866abf23a682a2cddaa9cc2 | |
| parent | 759c64ee0e3604e2b6946197ff75fb6821ecccee (diff) | |
| download | meta-openembedded-6f3bc88294062b01a2f758e1483ea9726203b60c.tar.gz | |
openldap: Fix build with autoconf 2.70+
New autoconf is stricter about aux files therefore bring them from
libtool native as they can not go missing anymore
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-support/openldap/openldap_2.4.57.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/openldap/openldap_2.4.57.bb b/meta-oe/recipes-support/openldap/openldap_2.4.57.bb index a282523a3c..7c04600670 100644 --- a/meta-oe/recipes-support/openldap/openldap_2.4.57.bb +++ b/meta-oe/recipes-support/openldap/openldap_2.4.57.bb | |||
| @@ -151,11 +151,13 @@ CPPFLAGS_append = " -D_GNU_SOURCE -DURANDOM_DEVICE=\'/dev/urandom\' -fPIC" | |||
| 151 | LDFLAGS_append = " -pthread" | 151 | LDFLAGS_append = " -pthread" |
| 152 | 152 | ||
| 153 | do_configure() { | 153 | do_configure() { |
| 154 | cp ${STAGING_DATADIR_NATIVE}/libtool/build-aux/ltmain.sh ${S}/build | ||
| 155 | rm -f ${S}/libtool | 154 | rm -f ${S}/libtool |
| 156 | aclocal | 155 | aclocal |
| 157 | libtoolize --force --copy | 156 | libtoolize --force --copy |
| 158 | gnu-configize | 157 | gnu-configize |
| 158 | cp ${STAGING_DATADIR_NATIVE}/libtool/build-aux/ltmain.sh ${S}/build | ||
| 159 | cp ${STAGING_DATADIR_NATIVE}/libtool/build-aux/missing ${S}/build | ||
| 160 | cp ${STAGING_DATADIR_NATIVE}/libtool/build-aux/compile ${S}/build | ||
| 159 | autoconf | 161 | autoconf |
| 160 | oe_runconf | 162 | oe_runconf |
| 161 | } | 163 | } |
