summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* python3-multidict: update recipe to use the ptest-python-pytest classDerek Straka2025-01-302-14/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-msgpack: update recipe to use the ptest-python-pytest classDerek Straka2025-01-302-18/+3
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-outcome: update recipe to use the ptest-python-pytest classDerek Straka2025-01-302-15/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-ordered-set: update recipe to use the ptest-python-pytest classDerek Straka2025-01-302-16/+3
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-netaddr: update recipe to use the ptest-python-pytest classDerek Straka2025-01-302-14/+2
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-inflection: update recipe to use the ptest-python-pytest classDerek Straka2025-01-302-15/+2
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* plymouth: remove extra kernel parameterPiotr Łobacz2025-01-302-32/+0
| | | | | | | | | | | Setting `--kernel-command-line` in systemd service is unmodifiable from the bootloader kernel parameters. `splash` together with `plymouth.ignore-serial-consoles` should be added by the user to e.g. bootloader configuration file instead. Signed-off-by: Piotr Łobacz <p.lobacz@welotec.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* plymouth: remove patch causing issue with no login promptPiotr Łobacz2025-01-302-36/+0
| | | | | | | | | | Setting `--retain-splash` isn't right, plymouth-quit gets used for instance when switching to a getty or something that isn't graphical [1]. [1] https://gitlab.freedesktop.org/plymouth/plymouth/-/merge_requests/157 Signed-off-by: Piotr Łobacz <p.lobacz@welotec.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libspdm: Initial support for libspdmAlistair Francis2025-01-301-0/+76
| | | | | | | | | | | libspdm is DMTF's Reference Implementation of SPDM, it's a library that can be used to implement a SPDM requester or responder in userspace. This patch adds support for building libspdm, which can then be used to build applications depending on libspdm. Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* uutils-coreutils: upgrade 0.0.28 -> 0.0.29Etienne Cordonnier2025-01-302-347/+389
| | | | | | | See https://github.com/uutils/coreutils/releases/tag/0.0.29 Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* can-utils: RRECOMMENDS only ip from iproute2Sean Nyekjaer2025-01-291-1/+1
| | | | | | | There is no need for RRECOMMENDS on the full iproute2 package. Signed-off-by: Sean Nyekjaer <sean@geanix.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-nanobind: Add recipeLeon Anavi2025-01-291-0/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add recipe for nanobind, tiny and efficient C++/Python bindings. Changelog for version 2.4.0: - Added a function annotation :cpp:class:`nb::call_policy\<Policy\>() <call_policy>` which supports custom function wrapping logic, calling Policy::precall() before the bound function and Policy::postcall() after. This is a low-level interface intended for advanced users. The precall and postcall hooks are able to observe the Python objects forming the function arguments and return value, and the precall hook can change the arguments. - :cpp:func:`nb::make_iterator <make_iterator>` now accepts its iterator arguments by value, rather than by forwarding reference, in order to eliminate the hazard of storing a dangling C++ iterator reference in the returned Python iterator object. - The std::variant type_caster now does two passes when converting from Python. The first pass is done without implicit conversions. This fixes an issue where std::variant<U, T> might cast a Python object wrapping a T to a U if there is an implicit conversion available from T to U. - Restored support for constructing types with an overloaded __new__ that takes no arguments, which regressed with the constructor vector call acceleration that was added in nanobind 2.2.0. - Bindings for augmented assignment operators (as generated, for example, by .def(nb::self += nb::self)) now return the same object in Python in the typical case where the C++ operator returns a reference to *this. Previously, after a += b, a would be replaced with a copy. - Added an overload to :cpp:func:`nb::isinstance <isinstance>` which tests if a Python object is an instance of a Python class. This is in addition to the existing overload, which tests if a Python object is an instance of a bound C++ class. - Added support for overriding static properties, such as those defined using def_prop_ro_static, in subclasses. Previously this would fail with an error. - Other minor fixes and improvements. This work was sponsored by GOVCERT.LU. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-lief: Add recipeLeon Anavi2025-01-293-0/+96
| | | | | | | | | | | | | | | | | Add recipe to build the Python API of LIEF (Library to Instrument Executable Formats). The purpose of this project is to provide a cross-platform library to parse, modify and abstract ELF, PE and MachO formats. Changelog for LIEF release 0.16.2: - Fix broken aarch64 Python wheel which is related to a toolchain issue This work was sponsored by GOVCERT.LU. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pydantic: Add native and nativesdkLeon Anavi2025-01-291-0/+2
| | | | | | | | | To build python3-lief we need python3-pydantic-native. This work was sponsored by GOVCERT.LU. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pydantic-core: Add native and nativesdkLeon Anavi2025-01-291-0/+2
| | | | | | | | | | To build python3-lief we need python3-pydantic-native. To build python3-pydantic-native we need python3-pydantic-core-native. This work was sponsored by GOVCERT.LU. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-tzdata: Add native and nativesdkLeon Anavi2025-01-291-0/+2
| | | | | | | | | | To build python3-lief we need python3-pydantic-native. To build python3-pydantic-native we need python3-tzdata-native. This work was sponsored by GOVCERT.LU. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-annotated-types: Add native and nativesdkLeon Anavi2025-01-291-0/+2
| | | | | | | | | | To build python3-lief we need python3-pydantic-native. To build python3-pydantic-native we need python3-annotated-types-native. This work was sponsored by GOVCERT.LU. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-scikit-build-core: Use PYTHON_INCLUDE_DIRLeon Anavi2025-01-292-0/+33
| | | | | | | | | | | | Add a patch to use PYTHON_INCLUDE_DIR to find Python Interpreter and Development.Module as suggested by Stephan Kulow: https://github.com/scikit-build/scikit-build-core/issues/952#issuecomment-2554058930 This work was sponsored by GOVCERT.LU. Suggested-by: Stephan Kulow <stephan.kulow@siemens.com> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cheese: new recipeBartosz Golaszewski2025-01-292-0/+55
| | | | | | | | Add a recipe for cheese - a Gnome application for taking photos and videos with webcams. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* luaposix: Fix LUA_INCDIR pathKhem Raj2025-01-291-1/+1
| | | | | | | | | If not specified on build commandline for luke, it results in pulling it from build host development headers under /usr/include this was always happening but with recent fixes to GCC poisoning host includes patch, this issue has come to fore. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pandas: Inherit pkgconfig classKhem Raj2025-01-291-1/+1
| | | | | | Ensure pkg-config is found during the build. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* opencl-cts: Disable for RISCV architecturesKhem Raj2025-01-291-0/+3
| | | | | | Its not yet ported to RISCV architecure Signed-off-by: Khem Raj <raj.khem@gmail.com>
* opencl-cts: Add recipeAntonios Christidis2025-01-292-0/+71
| | | | | | | | | | | | This recipe provides the opecl-cts suite. This is a pre-release version v2024-08-08, which I have tested to work with opencl-headers version v2024.05.08 . The pre-release version was picked due to incompatibility issues with other versions of headers. Add a patch to add an option to disable warning as error Signed-off-by: Antonios Christidis <a-christidis@ti.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* net-snmp-native: dependency with libpci-nativeChristos Gavros2025-01-291-2/+2
| | | | | | | | | | | | Building of net-snmp-native aborted due to missing dependency with libpci-native. Fixed by keeping the dependency on for target recipe and removing it for native CC: Yoann Congal <yoann.congal@smile.fr> CC: Randy MacLeod <randy.macleod@windriver.com> Signed-off-by: Christos Gavros <gavrosc@yahoo.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libgpiod: unduplicate the EXTRA_OECONF assignmentBartosz Golaszewski2025-01-281-4/+0
| | | | | | | We already set EXTRA_OECONF in libgpiod.inc, drop the second assignment. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pydantic-core: remove not needed INSANE_SKIPGyorgy Sarvari2025-01-281-1/+0
| | | | | | | | The current version of the recipe passes the "buildpaths" QA check, it is not needed to skip it. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* c-ares: upgrade 1.32.3 -> 1.33.0Jason Schonberg2025-01-281-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | License-Update: Still MIT licensed. Just removed a header from the license file. https://github.com/c-ares/c-ares/commit/595cf2133488d2e02c6389577a1b511971dba1ba Changelog: https://github.com/c-ares/c-ares/releases/tag/v1.33.0 Features: Add DNS cookie support (RFC7873 + RFC9018) to help prevent off-path cache poisoning attacks. PR #833 Implement TCP FastOpen (TFO) RFC7413, which will make TCP reconnects 0-RTT on supported systems. PR #840 Changes: Reorganize source tree. PR #822 Refactoring of connection handling to prevent code duplication. PR #839 New dynamic array data structure to prevent simple logic flaws in array handling in various code paths. PR #841 Bugfixes: ares_destroy() race condition during shutdown due to missing lock. PR #831 Android: Preserve thread name after attaching it to JVM. PR #838 Windows UWP (Store) support fix. PR #845 Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* zchunk: upgrade 1.4.0 -> 1.5.1Jason Schonberg2025-01-261-1/+1
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* audit: upgrade 4.0.2 -> 4.0.3Yi Zhao2025-01-262-12/+7
| | | | | | | | | | | | | | | | | | | | | | | ChangeLog: - Remove a RHEL4 flag table since it's been unsupported for a while - Change dependency from Requires to Wants for audit-rules.service - Disable ProtectKernelModules by default in auditd.service - Skip plugin configs that do not have .conf suffix - audisp-filter: iterate records correctly when forwarding - Update syscall table for missing syscalls - Modify ausearch checkpoint code to address 64 inode and device numbers - Fix potential segfault interpreting relative paths - Add audit_set_enabled & audit_is_enabled back to the libaudit python bindings - Log runlevel changes to console during boot - Add audit-tmpfiles.conf to ensure /var/log/audit exists - Propagate event format to the audisp-af_unix plugin - Add support for RISC-V - riscv32, riscv64 * Enable riscv support * Use its own volatile file for systemd. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-posix-ipc: use correct C compiler to detect system featuresGyorgy Sarvari2025-01-252-0/+47
| | | | | | | | | | | | | | | | | | During compilation, prober.py (called from setup.py) uses "cc" to compile some simple code, to detect if the used features are available. However during cross-compilation we don't use "cc", but some other compiler for cross-compiling. Due to this, the feature detection can fail (maybe it fails always?), as the correct C compiler for Yocto is not cc, but the content of CC environment variable. To solve this, instead of using cc always, take the C compiler from the CC environment variable when it is available, and fall back to cc only when this environment variable is not set. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* android-tools-native: dependency with android-tools-conf-nativeChristos Gavros2025-01-251-0/+1
| | | | | | | | | Building of android-tools-native aborted due to missing dependency with android-tools-conf-native. Fixed by extending android-tools-conf-configfs_1.0.bb recipe to build native Signed-off-by: Christos Gavros <gavrosc@yahoo.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* crash-cross-canadian: Update to match OE-Core virtual provider changesRichard Purdie2025-01-251-3/+3
| | | | | | | | | | OE-Core changed to to use virtual/nativesdk-cross-XXX replace the older more complex cross providers. Update the recipes to match. This fixes check layer failures on the autobuilder. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* php: Drop references to ACLOCALDIRKhem Raj2025-01-251-2/+5
| | | | | | ACLOCALDIR is dropped from core Signed-off-by: Khem Raj <raj.khem@gmail.com>
* opentelemetry-cpp: fix non-default PACKAGECONFIG optionsGyorgy Sarvari2025-01-251-10/+15
| | | | | | | | | | | | | | | | | | 1. Delete the build_package PACKAGECONFIG - it is used to build a deb/rpm package, which is handled by Yocto. 2. Add the required build time dependencies for the other PACKAGECONFIG options, as many of them were broken, and the build failed when they were enabled. (otlp_grpc, otlp_http, otlp_prometheus, testing). 3. Switch to gitsm:// protocol in SRC_URI, as some of the PACKAGECONFIG options do use some of the submodules included in the main repository. 4. Add EXTRA_OECMAKE arguments: OTELCPP_VERSIONED_LIBS and BUILD_SHARED_LIBS are required to generated versioned libraries, and avoid triggering the dev-elf qa check with the PACKAGECONFIG options that generate a SO file. PROTOBUF_PROTOC_EXECUTABLE is used by otlp_grpc and otlp_http PACKAGECONFIGs only, however this long option makes PACKAGECONFIG very hard to read - so added here. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-robotframework-seriallibrary: correct license file and checksumGyorgy Sarvari2025-01-251-1/+1
| | | | | | | | | | The PKG-INFO line referenced in the LIC_FILES_CHKSUM variable is outdated, and points to a non-license related detail. Instead use the LICENSE file to verify the license. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cachecontrol: correct license file and checksumGyorgy Sarvari2025-01-251-1/+1
| | | | | | | | | | The PKG-INFO line referenced in the LIC_FILES_CHKSUM variable is outdated, and points to a non-license related detail. Instead use LICENSE.txt to verify the license. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-oletools: correct license file and checksumGyorgy Sarvari2025-01-251-1/+1
| | | | | | | | | | The PKG-INFO line referenced in the LIC_FILES_CHKSUM variable is outdated, and points to a non-license related detail. Instead use LICENSE.md to verify the license. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-ujson: correct license file and checksumGyorgy Sarvari2025-01-251-1/+1
| | | | | | | | | | The PKG-INFO line referenced in the LIC_FILES_CHKSUM variable is outdated, and points to a non-license related detail. Instead use LICENSE.txt to verify the license. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-hyperframe: Upgrade 6.0.1 -> 6.1.0Leon Anavi2025-01-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 6.1.0: API Changes (Backward Incompatible) - Support for Python 3.6 has been removed. - Support for Python 3.7 has been removed. - Support for Python 3.8 has been removed. API Changes (Backward Compatible) - Support for Python 3.10 has been added. - Support for Python 3.11 has been added. - Support for Python 3.12 has been added. - Support for Python 3.13 has been added. - Updated packaging and testing infrastructure. - Code cleanup and linting. - Improved type hints. Fixes: WARNING: python3-hyperframe-6.1.0-r0 do_check_backend: QA Issue: inherits setuptools3 but has pyproject.toml with setuptools.build_meta, use the correct class [pep517-backend] Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-hpack: Upgrade 4.0.0 -> 4.1.0Leon Anavi2025-01-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 4.1.0: API Changes (Backward Incompatible) - Support for Python 3.6 has been removed. - Support for Python 3.7 has been removed. - Support for Python 3.8 has been removed. - Renamed InvalidTableIndex exception to InvalidTableIndexError. API Changes (Backward Compatible) - Support for Python 3.9 has been added. - Support for Python 3.10 has been added. - Support for Python 3.11 has been added. - Support for Python 3.12 has been added. - Support for Python 3.13 has been added. - Optimized bytes encoding of headers. - Updated packaging and testing infrastructure. - Code cleanup and linting. - Added type hints. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-wrapt: Upgrade 1.17.1 -> 1.17.2Leon Anavi2025-01-251-1/+1
| | | | | | | | | | Upgrade to release 1.17.2: - Added universal binary wheels for macOS. That is, contains both x86_64 and arm64 architectures in the same wheel. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-marshmallow: Upgrade 3.25.1 -> 3.26.0Leon Anavi2025-01-251-1/+1
| | | | | | | | | | | | | | | | | | | | Upgrade to release 3.26.0: - Typing: Add type annotations and improved documentation for class Meta <marshmallow.Schema.Meta> options. - Typing: Improve type coverage of marshmallow.Schema.SchemaMeta. - Typing: marshmallow.Schema.loads parameter allows bytes and bytesarray. - Respect data_key when schema validators raise a ValidationError <marshmallow.exceptions.ValidationError> with a field_name argument. - Correctly handle multiple @post_load <marshmallow.post_load> methods where one method appends to the data and another passes pass_original=True. - URL fields now properly validate file paths. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pocketsphinx: Upgrade 5.0.3 -> 5.0.4Leon Anavi2025-01-251-1/+1
| | | | | | | | | | | | | | Upgrade to release 5.0.4: - Fix _pocketsphinx.pyx's set_alignment example - fix: evil version pinning must die.die.die - Fix typos discovered by codespell - GitHub Actions: Add Python 3.13 to the testing - Add a simple language model maker script - Add suggested packages to README.md Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* civetweb: fix pathes in cmake fileGyorgy Sarvari2025-01-251-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. The do_install:append() deleted the TMPDIR from the cmake file, however that left two absolute pathes in the file: /usr/lib/libssl.so and /usr/lib/libcrypto.so. In case another project is trying to link to civetweb-server with cmake, it fails with the following error: ninja: error: '/usr/lib/libssl.so', needed by 'examples/prometheus/prometheus_example', missing and no known rule to make it Instead of only deleting the TMPDIR, change it to ${CMAKE_SYSROOT} - a variable set by cmake.bbclass. This allows other projects to find the required interfacing libraries successfully. 2. When linking to civetweb-server from another project using cmake, the cmake file verifies if the /usr/bin/civetweb binary exists. When using the class-target package, this file is not included in the sysroot during build-time, so this check fails with the following error: CMake Error at ${RECIPE_SYSROOT}/usr/lib/cmake/civetweb/civetweb-targets.cmake:97 (message): The imported target "civetweb::server" references the file "${RECIPE_SYSROOT}/usr/bin/civetweb" but this file does not exist. Possible reasons include: To avoid this error, this check is deleted for class-target. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-zeroconf: correct license file and checksumGyorgy Sarvari2025-01-251-1/+1
| | | | | | | | | | | | The PKG-INFO file's content can shift around, and the different details can change position - e.g. line 6 currently points to the "Author" field, and not to the "License" field. Instead use the COPYING file to verify the license, which seems to be a more stable indicator. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rtmpdump: update 2.4 -> v2.6Thomas Schlien2025-01-252-20/+2
| | | | | | | - remove fix-racing-build-issue.patch since it is included upstream Signed-off-by: Thomas Schlien <ts@ferncast.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* collectd: add PACKAGECONFIG for dpdkThomas Schlien2025-01-251-0/+1
| | | | | Signed-off-by: Thomas Schlien <ts@ferncast.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ntp: set CONFIG_SITE in do_compileRoss Burton2025-01-241-0/+5
| | | | | | | | | Recent changes in to the autotools class in core means that it no longer sets CONFIG_SITE for compile tasks. However, ntp decides to reconfigure itself mid-build, so the CONFIG_SITE values are lost. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* syslog-ng: remove obsolete double-run of configureRoss Burton2025-01-241-9/+0
| | | | | | | | There do not appear to be libtool problems with syslog-ng, so the requirement to double-run autoreconf from 2017 must have been resolved. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ncftp: update for autoconf changes in coreRoss Burton2025-01-241-1/+2
| | | | | | | | | | ACLOCALEXTRAPATH is no longer used, so pass the required -I via EXTRA_AUTORECONF. Also explicitly disable aclocal as the aclocal is hand-maintained. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>