checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for s390x-buildroot-linux-gnu-ranlib... /home/autobuild/autobuild/instance-11/output-1/host/bin/s390x-buildroot-linux-gnu-gcc-ranlib checking for s390x-buildroot-linux-gnu-gcc... (cached) /home/autobuild/autobuild/instance-11/output-1/host/bin/s390x-buildroot-linux-gnu-gcc checking whether we are using the GNU C compiler... (cached) yes checking whether /home/autobuild/autobuild/instance-11/output-1/host/bin/s390x-buildroot-linux-gnu-gcc accepts -g... (cached) yes checking for /home/autobuild/autobuild/instance-11/output-1/host/bin/s390x-buildroot-linux-gnu-gcc option to accept ISO C89... (cached) none needed checking whether /home/autobuild/autobuild/instance-11/output-1/host/bin/s390x-buildroot-linux-gnu-gcc understands -c and -o together... (cached) yes checking dependency style of /home/autobuild/autobuild/instance-11/output-1/host/bin/s390x-buildroot-linux-gnu-gcc... (cached) none checking for /home/autobuild/autobuild/instance-11/output-1/host/bin/s390x-buildroot-linux-gnu-gcc option to accept ISO C99... (cached) -std=gnu99 checking whether C compiler accepts -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O1 -g0 -D_FORTIFY_SOURCE=1 -Wall... yes checking whether C compiler accepts -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O1 -g0 -D_FORTIFY_SOURCE=1 -Wextra... yes checking whether C compiler accepts -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O1 -g0 -D_FORTIFY_SOURCE=1 -pedantic... yes checking whether C compiler accepts -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O1 -g0 -D_FORTIFY_SOURCE=1 -fno-strict-aliasing... yes checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking err.h usability... yes checking err.h presence... yes checking for err.h... yes checking getopt.h usability... yes checking getopt.h presence... yes checking for getopt.h... yes checking netdb.h usability... yes checking netdb.h presence... yes checking for netdb.h... yes checking netinet/in.h usability... yes checking netinet/in.h presence... yes checking for netinet/in.h... yes checking arpa/inet.h usability... yes checking arpa/inet.h presence... yes checking for arpa/inet.h... yes checking sys/socket.h usability... yes checking sys/socket.h presence... yes checking for sys/socket.h... yes checking for sys/stat.h... (cached) yes checking for sys/types.h... (cached) yes checking sys/wait.h usability... yes checking sys/wait.h presence... yes checking for sys/wait.h... yes checking for asprintf... yes checking for vasprintf... yes checking for getopt_long... yes checking for open_memstream... yes checking for strcasestr... yes checking for setproctitle... no checking for libcurl >= 7.38.0... found 8.2.1 checking for libcurl https support... yes checking for curl_global_init in -lcurl... yes checking for OpenSSL >= 1.1.1... found 3.0.9 checking for OpenSSL_version_num in -lssl... yes checking if OpenSSL is really LibreSSL... no checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating config.h config.status: executing depfiles commands configure: WARNING: unrecognized options: --disable-gtk-doc, --disable-gtk-doc-html, --disable-doc, --disable-documentation, --with-xmlto, --with-fop, --enable-ipv6, --disable-nls, --enable-static, --enable-shared >>> uacme 1.7.4 Building PATH="/home/autobuild/autobuild/instance-11/output-1/host/bin:/home/autobuild/autobuild/instance-11/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl" /home/autobuild/make/make -j1 -C /home/autobuild/autobuild/instance-11/output-1/build/uacme-1.7.4/ make[1]: Entering directory '/home/autobuild/autobuild/instance-11/output-1/build/uacme-1.7.4' echo 1.7.4 > .version-t && mv .version-t .version /home/autobuild/make/make all-am make[2]: Entering directory '/home/autobuild/autobuild/instance-11/output-1/build/uacme-1.7.4' CC uacme-uacme.o CC uacme-base64.o CC uacme-crypto.o crypto.c: In function 'openssl_hmac_fast': crypto.c:177:5: warning: 'HMAC_CTX_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 177 | HMAC_CTX *hmac = HMAC_CTX_new(); | ^~~~~~~~ In file included from crypto.c:63: /home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot/usr/include/openssl/hmac.h:33:33: note: declared here 33 | OSSL_DEPRECATEDIN_3_0 HMAC_CTX *HMAC_CTX_new(void); | ^~~~~~~~~~~~ crypto.c:182:5: warning: 'HMAC_Init_ex' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 182 | if (!HMAC_Init_ex(hmac, key, keylen, type, NULL)) { | ^~ /home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot/usr/include/openssl/hmac.h:43:27: note: declared here 43 | OSSL_DEPRECATEDIN_3_0 int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, | ^~~~~~~~~~~~ crypto.c:186:5: warning: 'HMAC_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 186 | if (!HMAC_Update(hmac, input, len)) { | ^~ /home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot/usr/include/openssl/hmac.h:45:27: note: declared here 45 | OSSL_DEPRECATEDIN_3_0 int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, | ^~~~~~~~~~~ crypto.c:190:5: warning: 'HMAC_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 190 | if (!HMAC_Final(hmac, output, NULL)) { | ^~ /home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot/usr/include/openssl/hmac.h:47:27: note: declared here 47 | OSSL_DEPRECATEDIN_3_0 int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, | ^~~~~~~~~~ crypto.c:197:9: warning: 'HMAC_CTX_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 197 | HMAC_CTX_free(hmac); | ^~~~~~~~~~~~~ /home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot/usr/include/openssl/hmac.h:35:28: note: declared here 35 | OSSL_DEPRECATEDIN_3_0 void HMAC_CTX_free(HMAC_CTX *ctx); | ^~~~~~~~~~~~~ crypto.c: In function 'rsa_params': crypto.c:561:5: warning: 'EVP_PKEY_get0_RSA' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 561 | RSA *rsa = EVP_PKEY_get0_RSA(key); | ^~~ In file included from crypto.h:39, from crypto.c:39: /home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot/usr/include/openssl/evp.h:1346:22: note: declared here 1346 | const struct rsa_st *EVP_PKEY_get0_RSA(const EVP_PKEY *pkey); | ^~~~~~~~~~~~~~~~~ crypto.c:561:16: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 561 | RSA *rsa = EVP_PKEY_get0_RSA(key); | ^~~~~~~~~~~~~~~~~ crypto.c:566:5: warning: 'RSA_get0_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 566 | RSA_get0_key(rsa, &bm, &be, NULL); | ^~~~~~~~~~~~ In file included from /home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot/usr/include/openssl/engine.h:25, from crypto.c:60: /home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot/usr/include/openssl/rsa.h:217:28: note: declared here 217 | OSSL_DEPRECATEDIN_3_0 void RSA_get0_key(const RSA *r, | ^~~~~~~~~~~~ crypto.c: In function 'ec_params': crypto.c:731:5: warning: 'EVP_PKEY_get0_EC_KEY' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 731 | EC_KEY *ec = EVP_PKEY_get0_EC_KEY(key); | ^~~~~~ /home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot/usr/include/openssl/evp.h:1372:25: note: declared here 1372 | const struct ec_key_st *EVP_PKEY_get0_EC_KEY(const EVP_PKEY *pkey); | ^~~~~~~~~~~~~~~~~~~~ crypto.c:731:18: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 731 | EC_KEY *ec = EVP_PKEY_get0_EC_KEY(key); | ^~~~~~~~~~~~~~~~~~~~ crypto.c:736:5: warning: 'EC_KEY_get0_group' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 736 | const EC_GROUP *g = EC_KEY_get0_group(ec); | ^~~~~ In file included from /home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot/usr/include/openssl/engine.h:28: /home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot/usr/include/openssl/ec.h:1034:39: note: declared here 1034 | OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key); | ^~~~~~~~~~~~~~~~~ crypto.c:754:5: warning: 'EC_KEY_get0_public_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 754 | const EC_POINT *pubkey = EC_KEY_get0_public_key(ec); | ^~~~~ /home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot/usr/include/openssl/ec.h:1062:39: note: declared here 1062 | OSSL_DEPRECATEDIN_3_0 const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key); | ^~~~~~~~~~~~~~~~~~~~~~ CC uacme-curlwrap.o CC uacme-json.o CC uacme-msg.o CCLD uacme make[2]: Leaving directory '/home/autobuild/autobuild/instance-11/output-1/build/uacme-1.7.4' make[1]: Leaving directory '/home/autobuild/autobuild/instance-11/output-1/build/uacme-1.7.4' >>> uacme 1.7.4 Installing to target PATH="/home/autobuild/autobuild/instance-11/output-1/host/bin:/home/autobuild/autobuild/instance-11/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl" /home/autobuild/make/make -j1 DESTDIR=/home/autobuild/autobuild/instance-11/output-1/target install -C /home/autobuild/autobuild/instance-11/output-1/build/uacme-1.7.4/ make[1]: Entering directory '/home/autobuild/autobuild/instance-11/output-1/build/uacme-1.7.4' /home/autobuild/make/make install-am make[2]: Entering directory '/home/autobuild/autobuild/instance-11/output-1/build/uacme-1.7.4' make[3]: Entering directory '/home/autobuild/autobuild/instance-11/output-1/build/uacme-1.7.4' /usr/bin/mkdir -p '/home/autobuild/autobuild/instance-11/output-1/target/usr/bin' /usr/bin/install -c uacme '/home/autobuild/autobuild/instance-11/output-1/target/usr/bin' /usr/bin/mkdir -p '/home/autobuild/autobuild/instance-11/output-1/target/usr/share/uacme' /usr/bin/install -c uacme.sh nsupdate.sh '/home/autobuild/autobuild/instance-11/output-1/target/usr/share/uacme' make[3]: Leaving directory '/home/autobuild/autobuild/instance-11/output-1/build/uacme-1.7.4' make[2]: Leaving directory '/home/autobuild/autobuild/instance-11/output-1/build/uacme-1.7.4' make[1]: Leaving directory '/home/autobuild/autobuild/instance-11/output-1/build/uacme-1.7.4' >>> urandom-scripts Extracting >>> urandom-scripts Patching >>> urandom-scripts Configuring >>> urandom-scripts Building >>> urandom-scripts Installing to target /usr/bin/install -D -m 0755 package/urandom-scripts//S20seedrng /home/autobuild/autobuild/instance-11/output-1/target/etc/init.d/S20seedrng utf8proc-2.8.0.tar.gz: OK (sha256: a0a60a79fe6f6d54e7d411facbfcc867a6e198608f2cd992490e46f04b1bcecc) >>> utf8proc 2.8.0 Extracting gzip -d -c /home/autobuild/autobuild/instance-11/dl/utf8proc/utf8proc-2.8.0.tar.gz | tar --strip-components=1 -C /home/autobuild/autobuild/instance-11/output-1/build/utf8proc-2.8.0 -xf - >>> utf8proc 2.8.0 Patching >>> utf8proc 2.8.0 Configuring (mkdir -p /home/autobuild/autobuild/instance-11/output-1/build/utf8proc-2.8.0//buildroot-build && cd /home/autobuild/autobuild/instance-11/output-1/build/utf8proc-2.8.0//buildroot-build && rm -f CMakeCache.txt && PATH="/home/autobuild/autobuild/instance-11/output-1/host/bin:/home/autobuild/autobuild/instance-11/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl" /home/autobuild/autobuild/instance-11/output-1/host/bin/cmake /home/autobuild/autobuild/instance-11/output-1/build/utf8proc-2.8.0/ -G"Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE="/home/autobuild/autobuild/instance-11/output-1/host/share/buildroot/toolchainfile.cmake" -DCMAKE_INSTALL_PREFIX="/usr" -DCMAKE_INSTALL_RUNSTATEDIR="/run" -DCMAKE_COLOR_MAKEFILE=OFF -DBUILD_DOC=OFF -DBUILD_DOCS=OFF -DBUILD_EXAMPLE=OFF -DBUILD_EXAMPLES=OFF -DBUILD_TEST=OFF -DBUILD_TESTS=OFF -DBUILD_TESTING=OFF -DBUILD_SHARED_LIBS=ON ) CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required): Compatibility with CMake < 3.5 will be removed from a future version of CMake. Update the VERSION argument value or use a ... suffix to tell CMake that the project does not need compatibility with older versions. -- The C compiler identification is GNU 12.3.0 -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working C compiler: /home/autobuild/autobuild/instance-11/output-1/host/bin/s390x-buildroot-linux-gnu-gcc - skipped -- Detecting C compile features -- Detecting C compile features - done -- Configuring done (0.6s) -- Generating done (0.0s) CMake Warning: Manually-specified variables were not used by the project: BUILD_DOC BUILD_DOCS BUILD_EXAMPLE BUILD_EXAMPLES BUILD_TEST BUILD_TESTING BUILD_TESTS -- Build files have been written to: /home/autobuild/autobuild/instance-11/output-1/build/utf8proc-2.8.0/buildroot-build >>> utf8proc 2.8.0 Building PATH="/home/autobuild/autobuild/instance-11/output-1/host/bin:/home/autobuild/autobuild/instance-11/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl" /home/autobuild/make/make -j1 -C /home/autobuild/autobuild/instance-11/output-1/build/utf8proc-2.8.0//buildroot-build make[1]: Entering directory '/home/autobuild/autobuild/instance-11/output-1/build/utf8proc-2.8.0/buildroot-build' [ 50%] Building C object CMakeFiles/utf8proc.dir/utf8proc.c.o [100%] Linking C shared library libutf8proc.so [100%] Built target utf8proc make[1]: Leaving directory '/home/autobuild/autobuild/instance-11/output-1/build/utf8proc-2.8.0/buildroot-build' >>> utf8proc 2.8.0 Installing to staging directory PATH="/home/autobuild/autobuild/instance-11/output-1/host/bin:/home/autobuild/autobuild/instance-11/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl" /home/autobuild/make/make -j1 DESTDIR=/home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot install/fast -C /home/autobuild/autobuild/instance-11/output-1/build/utf8proc-2.8.0//buildroot-build make[1]: Entering directory '/home/autobuild/autobuild/instance-11/output-1/build/utf8proc-2.8.0/buildroot-build' Install the project... -- Install configuration: "Release" -- Installing: /home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot/usr/include/utf8proc.h -- Installing: /home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot/usr/lib/libutf8proc.so.2.6.0 -- Installing: /home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot/usr/lib/libutf8proc.so.2 -- Installing: /home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot/usr/lib/libutf8proc.so -- Installing: /home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot/usr/lib/pkgconfig/libutf8proc.pc make[1]: Leaving directory '/home/autobuild/autobuild/instance-11/output-1/build/utf8proc-2.8.0/buildroot-build' >>> utf8proc 2.8.0 Fixing libtool files for la in $(find /home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot/usr/lib* -name "*.la"); do \ cp -a "${la}" "${la}.fixed" && \ /usr/bin/sed -i -e "s:/home/autobuild/autobuild/instance-11/output-1:@BASE_DIR@:g" \ -e "s:/home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot:@STAGING_DIR@:g" \ \ -e "s:\(['= ]\)/usr:\\1@STAGING_DIR@/usr:g" \ -e "s:\(['= ]\)/lib:\\1@STAGING_DIR@/lib:g" \ \ -e "s:@STAGING_DIR@:/home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot:g" \ -e "s:@BASE_DIR@:/home/autobuild/autobuild/instance-11/output-1:g" \ "${la}.fixed" && \ if cmp -s "${la}" "${la}.fixed"; then \ rm -f "${la}.fixed"; \ else \ mv "${la}.fixed" "${la}"; \ fi || exit 1; \ done >>> utf8proc 2.8.0 Installing to target PATH="/home/autobuild/autobuild/instance-11/output-1/host/bin:/home/autobuild/autobuild/instance-11/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl" /home/autobuild/make/make -j1 DESTDIR=/home/autobuild/autobuild/instance-11/output-1/target install/fast -C /home/autobuild/autobuild/instance-11/output-1/build/utf8proc-2.8.0//buildroot-build make[1]: Entering directory '/home/autobuild/autobuild/instance-11/output-1/build/utf8proc-2.8.0/buildroot-build' Install the project... -- Install configuration: "Release" -- Installing: /home/autobuild/autobuild/instance-11/output-1/target/usr/include/utf8proc.h -- Installing: /home/autobuild/autobuild/instance-11/output-1/target/usr/lib/libutf8proc.so.2.6.0 -- Installing: /home/autobuild/autobuild/instance-11/output-1/target/usr/lib/libutf8proc.so.2 -- Installing: /home/autobuild/autobuild/instance-11/output-1/target/usr/lib/libutf8proc.so -- Installing: /home/autobuild/autobuild/instance-11/output-1/target/usr/lib/pkgconfig/libutf8proc.pc make[1]: Leaving directory '/home/autobuild/autobuild/instance-11/output-1/build/utf8proc-2.8.0/buildroot-build' >>> Finalizing host directory >>> Finalizing target directory mkdir -p /home/autobuild/autobuild/instance-11/output-1/host/etc/meson sed -e "s%@TARGET_CFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-O1', '-g0', '-D_FORTIFY_SOURCE=1'@PKG_TARGET_CFLAGS@%g" -e "s%@TARGET_LDFLAGS@%@PKG_TARGET_LDFLAGS@%g" -e "s%@TARGET_CXXFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-O1', '-g0', '-D_FORTIFY_SOURCE=1'@PKG_TARGET_CXXFLAGS@%g" -e "s%@TARGET_FCFLAGS@%'-O1', '-g0'@PKG_TARGET_FCFLAGS@%g" -e "s%@TARGET_CC@%/home/autobuild/autobuild/instance-11/output-1/host/bin/s390x-buildroot-linux-gnu-gcc%g" -e "s%@TARGET_CXX@%/bin/false%g" -e "s%@TARGET_AR@%/home/autobuild/autobuild/instance-11/output-1/host/bin/s390x-buildroot-linux-gnu-gcc-ar%g" -e "s%@TARGET_FC@%/bin/false%g" -e "s%@TARGET_STRIP@%/bin/true%g" -e "s%@TARGET_ARCH@%s390x%g" -e "s%@TARGET_CPU@%%g" -e "s%@TARGET_ENDIAN@%big%g" -e "s%@TARGET_FCFLAGS@%%g" -e "s%@TARGET_CFLAGS@%%g" -e "s%@TARGET_LDFLAGS@%%g" -e "s%@TARGET_CXXFLAGS@%%g" -e "s%@BR2_CMAKE@%/home/autobuild/autobuild/instance-11/output-1/host/bin/cmake%g" -e "s%@PKGCONF_HOST_BINARY@%/home/autobuild/autobuild/instance-11/output-1/host/bin/pkgconf%g" -e "s%@HOST_DIR@%/home/autobuild/autobuild/instance-11/output-1/host%g" -e "s%@STAGING_DIR@%/home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot%g" -e "s%@STATIC@%false%g" /home/autobuild/autobuild/instance-11/buildroot/support/misc/cross-compilation.conf.in > /home/autobuild/autobuild/instance-11/output-1/host/etc/meson/cross-compilation.conf.in sed -e "s%@TARGET_CC@%/home/autobuild/autobuild/instance-11/output-1/host/bin/s390x-buildroot-linux-gnu-gcc%g" -e "s%@TARGET_CXX@%/bin/false%g" -e "s%@TARGET_AR@%/home/autobuild/autobuild/instance-11/output-1/host/bin/s390x-buildroot-linux-gnu-gcc-ar%g" -e "s%@TARGET_FC@%/bin/false%g" -e "s%@TARGET_STRIP@%/bin/true%g" -e "s%@TARGET_ARCH@%s390x%g" -e "s%@TARGET_CPU@%%g" -e "s%@TARGET_ENDIAN@%big%g" -e "s%@TARGET_FCFLAGS@%'-O1', '-g0'%g" -e "s%@TARGET_CFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-O1', '-g0', '-D_FORTIFY_SOURCE=1'%g" -e "s%@TARGET_LDFLAGS@%%g" -e "s%@TARGET_CXXFLAGS@%'-D_LARGEFILE_SOURCE', '-D_LARGEFILE64_SOURCE', '-D_FILE_OFFSET_BITS=64', '-O1', '-g0', '-D_FORTIFY_SOURCE=1'%g" -e "s%@BR2_CMAKE@%/home/autobuild/autobuild/instance-11/output-1/host/bin/cmake%g" -e "s%@PKGCONF_HOST_BINARY@%/home/autobuild/autobuild/instance-11/output-1/host/bin/pkgconf%g" -e "s%@HOST_DIR@%/home/autobuild/autobuild/instance-11/output-1/host%g" -e "s%@STAGING_DIR@%/home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot%g" -e "s%@STATIC@%false%g" /home/autobuild/autobuild/instance-11/buildroot/support/misc/cross-compilation.conf.in > /home/autobuild/autobuild/instance-11/output-1/host/etc/meson/cross-compilation.conf /usr/bin/sed -i -e '/# GENERIC_SERIAL$/s~^.*#~console::respawn:/sbin/getty -L console 0 vt100 #~' /home/autobuild/autobuild/instance-11/output-1/target/etc/inittab /usr/bin/sed -i -e '/^#.*-o remount,rw \/$/s~^#\+~~' /home/autobuild/autobuild/instance-11/output-1/target/etc/inittab if grep -q CONFIG_ASH=y /home/autobuild/autobuild/instance-11/output-1/build/busybox-1.36.1/.config; then grep -qsE '^/bin/ash$' /home/autobuild/autobuild/instance-11/output-1/target/etc/shells || echo "/bin/ash" >> /home/autobuild/autobuild/instance-11/output-1/target/etc/shells; fi if grep -q CONFIG_HUSH=y /home/autobuild/autobuild/instance-11/output-1/build/busybox-1.36.1/.config; then grep -qsE '^/bin/hush$' /home/autobuild/autobuild/instance-11/output-1/target/etc/shells || echo "/bin/hush" >> /home/autobuild/autobuild/instance-11/output-1/target/etc/shells; fi mkdir -p /home/autobuild/autobuild/instance-11/output-1/target/etc echo "buildroot" > /home/autobuild/autobuild/instance-11/output-1/target/etc/hostname /usr/bin/sed -i -e '$a \127.0.1.1\tbuildroot' -e '/^127.0.1.1/d' /home/autobuild/autobuild/instance-11/output-1/target/etc/hosts mkdir -p /home/autobuild/autobuild/instance-11/output-1/target/etc echo "Welcome to Buildroot" > /home/autobuild/autobuild/instance-11/output-1/target/etc/issue /usr/bin/sed -i -e s,^root:[^:]*:,root::, /home/autobuild/autobuild/instance-11/output-1/target/etc/shadow grep -qsE '^/bin/sh$' /home/autobuild/autobuild/instance-11/output-1/target/etc/shells || echo "/bin/sh" >> /home/autobuild/autobuild/instance-11/output-1/target/etc/shells if [ -x /home/autobuild/autobuild/instance-11/output-1/target/sbin/swapon -a -x /home/autobuild/autobuild/instance-11/output-1/target/sbin/swapoff ]; then /usr/bin/sed -i -e '/^#.*\/sbin\/swap/s/^#\+[[:blank:]]*//' /home/autobuild/autobuild/instance-11/output-1/target/etc/inittab; else /usr/bin/sed -i -e '/^[^#].*\/sbin\/swap/s/^/#/' /home/autobuild/autobuild/instance-11/output-1/target/etc/inittab; fi rm -rf /home/autobuild/autobuild/instance-11/output-1/target/usr/include /home/autobuild/autobuild/instance-11/output-1/target/usr/share/aclocal \ /home/autobuild/autobuild/instance-11/output-1/target/usr/lib/pkgconfig /home/autobuild/autobuild/instance-11/output-1/target/usr/share/pkgconfig \ /home/autobuild/autobuild/instance-11/output-1/target/usr/lib/cmake /home/autobuild/autobuild/instance-11/output-1/target/usr/share/cmake \ /home/autobuild/autobuild/instance-11/output-1/target/usr/lib/rpm /home/autobuild/autobuild/instance-11/output-1/target/usr/doc find /home/autobuild/autobuild/instance-11/output-1/target/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f find /home/autobuild/autobuild/instance-11/output-1/target/lib/ /home/autobuild/autobuild/instance-11/output-1/target/usr/lib/ /home/autobuild/autobuild/instance-11/output-1/target/usr/libexec/ \ \( -name '*.a' -o -name '*.la' -o -name '*.prl' \) -print0 | xargs -0 rm -f rm -rf /home/autobuild/autobuild/instance-11/output-1/target/usr/share/gdb rm -rf /home/autobuild/autobuild/instance-11/output-1/target/usr/share/bash-completion rm -rf /home/autobuild/autobuild/instance-11/output-1/target/etc/bash_completion.d rm -rf /home/autobuild/autobuild/instance-11/output-1/target/usr/share/zsh rm -rf /home/autobuild/autobuild/instance-11/output-1/target/usr/man /home/autobuild/autobuild/instance-11/output-1/target/usr/share/man rm -rf /home/autobuild/autobuild/instance-11/output-1/target/usr/info /home/autobuild/autobuild/instance-11/output-1/target/usr/share/info rm -rf /home/autobuild/autobuild/instance-11/output-1/target/usr/doc /home/autobuild/autobuild/instance-11/output-1/target/usr/share/doc rm -rf /home/autobuild/autobuild/instance-11/output-1/target/usr/share/gtk-doc rmdir /home/autobuild/autobuild/instance-11/output-1/target/usr/share 2>/dev/null || true rm -rf /home/autobuild/autobuild/instance-11/output-1/target/lib/debug /home/autobuild/autobuild/instance-11/output-1/target/usr/lib/debug find /home/autobuild/autobuild/instance-11/output-1/target -type f \( -perm /111 -o -name '*.so*' \) -not \( -name 'libpthread*.so*' -o -name 'ld-*.so*' -o -name '*.ko' \) -print0 | xargs -0 /bin/true 2>/dev/null || true find /home/autobuild/autobuild/instance-11/output-1/target \( -name 'ld-*.so*' -o -name 'libpthread*.so*' \) -print0 | xargs -0 -r /bin/true 2>/dev/null || true test -f /home/autobuild/autobuild/instance-11/output-1/target/etc/ld.so.conf && \ { echo "ERROR: we shouldn't have a /etc/ld.so.conf file"; exit 1; } || true test -d /home/autobuild/autobuild/instance-11/output-1/target/etc/ld.so.conf.d && \ { echo "ERROR: we shouldn't have a /etc/ld.so.conf.d directory"; exit 1; } || true mkdir -p /home/autobuild/autobuild/instance-11/output-1/target/etc ( \ echo "NAME=Buildroot"; \ echo "VERSION=2023.05-726-g5622c76bf4"; \ echo "ID=buildroot"; \ echo "VERSION_ID=2023.08-git"; \ echo "PRETTY_NAME=\"Buildroot 2023.08-git\"" \ ) > /home/autobuild/autobuild/instance-11/output-1/target/usr/lib/os-release ln -sf ../usr/lib/os-release /home/autobuild/autobuild/instance-11/output-1/target/etc >>> Sanitizing RPATH in target tree PER_PACKAGE_DIR=/home/autobuild/autobuild/instance-11/output-1/per-package /home/autobuild/autobuild/instance-11/buildroot/support/scripts/fix-rpath target touch /home/autobuild/autobuild/instance-11/output-1/target/usr ln -snf /home/autobuild/autobuild/instance-11/output-1/host/s390x-buildroot-linux-gnu/sysroot /home/autobuild/autobuild/instance-11/output-1/staging make: Leaving directory '/home/autobuild/autobuild/instance-11/buildroot' make: Entering directory '/home/autobuild/autobuild/instance-11/buildroot' >>> Buildroot 2023.05-726-g5622c76bf4 Collecting legal info COPYING: OK (sha256: 9755181e27175cb3510b4da8629caa406fb355a19aa8e7d55f06bf8ab33323c4) >>> toolchain-buildroot Collecting legal info >>> host-gcc-final 12.3.0 Collecting legal info >>> glibc 2.37-2-g9f8513dc64119a424b312db97cef5d87d376defa Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) COPYING.LIB: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) LICENSES: OK (sha256: b33d0bd9f685b46853548814893a6135e74430d12f6d94ab3eba42fc591f83bc) >>> host-bison 3.8.2 Collecting legal info COPYING: OK (sha256: 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986) >>> host-m4 1.4.19 Collecting legal info COPYING: OK (sha256: 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986) >>> host-skeleton Collecting legal info >>> host-gawk 5.2.2 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> host-gcc-initial 12.3.0 Collecting legal info >>> host-binutils 2.39 Collecting legal info COPYING3: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) COPYING.LIB: OK (sha256: 56bdea73b6145ef6ac5259b3da390b981d840c24cb03b8e1cbc678de7ecfa18d) >>> host-gmp 6.2.1 Collecting legal info COPYING.LESSERv3: OK (sha256: a853c2ffec17057872340eee242ae4d96cbf2b520ae27d903e1b2fef1a5f9d1c) COPYINGv2: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> host-mpc 1.2.1 Collecting legal info COPYING.LESSER: OK (sha256: da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768) >>> host-mpfr 4.1.1 Collecting legal info COPYING.LESSER: OK (sha256: e3a994d82e644b03a792a930f574002658412f62407f5fee083f2555c5f23118) >>> linux-headers 6.4.7 Collecting legal info COPYING: OK (sha256: fb5a425bd3b3cd6071a3a9aff9909a859e7c1158d54d32e07658398cd67eb6a0) LICENSES/preferred/GPL-2.0: OK (sha256: f6b78c087c3ebdf0f3c13415070dd480a3f35d8fc76f3d02180a407c1c812f79) LICENSES/exceptions/Linux-syscall-note: OK (sha256: 8e378ab93586eb55135d3bc119cce787f7324f48394777d00c34fa3d0be3303f) >>> skeleton Collecting legal info >>> skeleton-init-sysv Collecting legal info >>> skeleton-init-common Collecting legal info >>> toolchain Collecting legal info >>> aespipe 2.4f Collecting legal info >>> bitwise 0.50 Collecting legal info COPYING: OK (sha256: 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986) >>> ncurses 6.4-20230603 Collecting legal info COPYING: OK (sha256: 0413b2f4ea863194c174673032f0fca84f1ea1ed4eed6476baea68c075a631ce) >>> host-ncurses 6.4-20230603 Collecting legal info COPYING: OK (sha256: 0413b2f4ea863194c174673032f0fca84f1ea1ed4eed6476baea68c075a631ce) >>> readline 8.2 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> host-autoconf 2.71 Collecting legal info COPYINGv3: OK (sha256: 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986) COPYING.EXCEPTION: OK (sha256: 1f1cde9fb68b9b3cff18c420894bec5bd4defacd700b7d13df54a887301e5350) >>> host-libtool 2.4.6 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) libltdl/COPYING.LIB: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> busybox 1.36.1 Collecting legal info LICENSE: OK (sha256: bbfc9843646d483c334664f651c208b9839626891d8f17604db2146962f43548) archival/libarchive/bz/LICENSE: OK (sha256: b5a136ed67798e51fe2e0ca0b2a21cb01b904ff0c9f7d563a6292e276607e58f) >>> ntp 4.2.8p17 Collecting legal info COPYRIGHT: OK (sha256: 06246b8c15ccc1a1873c78525c810f0802e68f383e79ee041e06d1ab9cbf80a4) >>> host-automake 1.16.5 Collecting legal info COPYING: OK (sha256: ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6) >>> host-pkgconf 1.6.3 Collecting legal info COPYING: OK (sha256: 07ee94b50a41ee3fc4e13a9b9c60b26fc28488494c465639f7e5f07a3952ec04) >>> libevent 2.1.12 Collecting legal info LICENSE: OK (sha256: ff02effc9b331edcdac387d198691bfa3e575e7d244ad10cb826aa51ef085670) >>> openssl Collecting legal info >>> libopenssl 3.0.9 Collecting legal info LICENSE.txt: OK (sha256: 7d5450cb2d142651b8afa315b5f238efc805dad827d91ba367d8516bc9d49e7a) >>> zlib Collecting legal info >>> libzlib 1.2.13 Collecting legal info LICENSE: OK (sha256: 845efc77857d485d91fb3e0b884aaa929368c717ae8186b66fe1ed2495753243) >>> netsnmp 5.9.3 Collecting legal info COPYING: OK (sha256: ed869ea395a1f125819a56676385ab0557a21507764bf56f2943302011381e59) >>> dvbsnoop 1.4.50 Collecting legal info COPYING: OK (sha256: 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670) >>> freetype 2.13.1 Collecting legal info LICENSE.TXT: OK (sha256: 2e3bbb7d7c5c396368dd0853a790ec29ce5b8647163dde42a0493fb0d6556b2b) docs/FTL.TXT: OK (sha256: 08c135755dd589039470f1fdbb400daaabaaa50d0b366d19cebff4d22986baa1) docs/GPLv2.TXT: OK (sha256: c4120c6752c910c299e3bd9cb3a46ff262c268303ca2069b61f92f10a5656c18) >>> gd 2.3.3 Collecting legal info COPYING: OK (sha256: 005f4b6b0141d1bd11d371bbf7d4f67947f85a4906b7f5465f942204cf918ba3) >>> gmp 6.2.1 Collecting legal info COPYING.LESSERv3: OK (sha256: a853c2ffec17057872340eee242ae4d96cbf2b520ae27d903e1b2fef1a5f9d1c) COPYINGv2: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> host-gptfdisk 1.0.9 Collecting legal info COPYING: OK (sha256: 231f7edcc7352d7734a96eef0b8030f77982678c516876fcb81e25b32d68564c) >>> host-popt 1.19 Collecting legal info COPYING: OK (sha256: 2b488b239927935f34769a39309c0680be16e3725a1f55dbb06ed20d53852801) >>> host-util-linux 2.39.1 Collecting legal info README.licensing: OK (sha256: 64dfeae1519bf0e27563d905a71264310fb6a8fa74e5cf99bb36e4d30d7ef455) Documentation/licenses/COPYING.BSD-3-Clause: OK (sha256: 9b718a9460fed5952466421235bc79eb49d4e9eacc920d7a9dd6285ab8fd6c6d) Documentation/licenses/COPYING.BSD-4-Clause-UC: OK (sha256: ba7640f00d93e72e92b94b9d71f25ec53bac2f1682f5c4adcccb0018359f60f8) Documentation/licenses/COPYING.GPL-2.0-or-later: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) Documentation/licenses/COPYING.ISC: OK (sha256: e53348ce276358e9997014071c5294b36a18c4b34f32f00ee57b9acce0aafd63) Documentation/licenses/COPYING.LGPL-2.1-or-later: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> host-zlib Collecting legal info >>> host-libzlib 1.2.13 Collecting legal info LICENSE: OK (sha256: 845efc77857d485d91fb3e0b884aaa929368c717ae8186b66fe1ed2495753243) >>> hwdata 0.371 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) LICENSE: OK (sha256: 21d0406f93e884a050426ebc21931839a45d56bfcbcbfdda7686d583f36f107f) >>> initscripts Collecting legal info >>> libcdio-paranoia 10.2+2.0.1 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> libcdio 2.1.0 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> libcurl 8.2.1 Collecting legal info COPYING: OK (sha256: b1d7feb949ea5023552029fbe0bf5db4f23c2f85e9b8e51e18536f0ecbf9c524) >>> libdisplay-info 0.1.1 Collecting legal info LICENSE: OK (sha256: 15b396244e58830c5614b9394f4deccfe684970cd507f299383ab57ad339eedd) >>> host-meson 1.2.0 Collecting legal info COPYING: OK (sha256: cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30) >>> host-ninja 1.11.1.g95dee.kitware.jobserver-1 Collecting legal info COPYING: OK (sha256: eb7e9ab9690124c5c9f42bdc81383d886a3dede26345b6ed15bbad7caf81f7ea) >>> host-cmake 3.27.1 Collecting legal info Copyright.txt: OK (sha256: 4a01ccf2dc580ba570d02bc015bbe0ec92f1f318717aae9540ba841ba7946756) >>> host-python-setuptools 68.0.0 Collecting legal info LICENSE: OK (sha256: 86da0f01aeae46348a3c3d465195dc1ceccde79f79e87769a64b8da04b2a4741) >>> host-python-installer 0.7.0 Collecting legal info LICENSE: OK (sha256: 37b8b9f2569892fa54406383d431169dbb2115980d78b7efba6eeae5664c484f) >>> host-python-flit-core 3.9.0 Collecting legal info LICENSE: OK (sha256: 35b4f1dec512e617077fd6980dbb43ef8c2887adc5d0185edb4c04da175dd816) >>> host-python3 3.11.4 Collecting legal info LICENSE: OK (sha256: 3b2f81fe21d181c499c59a256c8e1968455d6689d269aa85373bfb6af41da3bf) >>> host-autoconf-archive 2023.02.20 Collecting legal info COPYING: OK (sha256: e6037104443f9a7829b2aa7c5370d0789a7bda3ca65a0b904cdc0c2e285d9195) COPYING.EXCEPTION: OK (sha256: 23ed0b84fa023bfa33433b498192cd08a3bfb1f4864a8ed791a84f3eb48b2dd2) >>> host-expat 2.5.0 Collecting legal info COPYING: OK (sha256: 122f2c27000472a201d337b9b31f7eb2b52d091b02857061a8880371612d9534) >>> host-libffi 3.4.4 Collecting legal info LICENSE: OK (sha256: 2c9c2acb9743e6b007b91350475308aee44691d96aa20eacef8e199988c8c388) >>> host-python-pypa-build 0.10.0 Collecting legal info LICENSE: OK (sha256: aaf9a29ca5907971ccf07de025375db34539a8d5eeebce20b46099805722106f) >>> host-python-packaging 23.1 Collecting legal info LICENSE: OK (sha256: cad1ef5bd340d73e074ba614d26f7deaca5c7940c3d8c34852e65c4909686c48) LICENSE.APACHE: OK (sha256: 0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594) LICENSE.BSD: OK (sha256: b70e7e9b742f1cc6f948b34c16aa39ffece94196364bc88ff0d2180f0028fac5) >>> host-python-pyproject-hooks 1.0.0 Collecting legal info LICENSE: OK (sha256: 1b22b049b5267d6dfc23a67bf4a84d8ec04b9fdfb1a51d360e42b4342c8b4154) >>> host-python-wheel 0.40.0 Collecting legal info LICENSE.txt: OK (sha256: 30c23618679108f3e8ea1d2a658c7ca417bdfc891c98ef1a89fa4ff0c9828654) >>> libfribidi 1.0.13 Collecting legal info COPYING: OK (sha256: 32434afcc8666ba060e111d715bfdb6c2d5dd8a35fa4d3ab8ad67d8f850d2f2b) >>> libldns 1.8.3 Collecting legal info LICENSE: OK (sha256: 9e0b1505c358d1a7c79555ee8bd1acbe2985dbc74dd81f3697cebf2161e922e6) >>> libmnl 1.0.5 Collecting legal info COPYING: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> libnetfilter_acct 1.0.3 Collecting legal info COPYING: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> libnfnetlink 1.0.2 Collecting legal info COPYING: OK (sha256: 91df39d1816bfb17a4dda2d3d2c83b1f6f2d38d53e53e41e8f97ad5ac46a0cad) >>> libpcap 1.10.4 Collecting legal info LICENSE: OK (sha256: 8a54594d257e14a5260ac770f1633516cb51e3fc28c40136ce2697014eda7afd) >>> host-flex 2.6.4 Collecting legal info COPYING: OK (sha256: 97fd685958d93be7f8dab939bb8161dbd6afb0718c63bfc337c24321aea44273) >>> host-gettext Collecting legal info >>> host-gettext-tiny 0.3.2 Collecting legal info LICENSE: OK (sha256: 4c938aa3d8fa3c184bba5e87a8a2febc89560627c9d0567536879e3eca1a7b4f) extra/COPYING: OK (sha256: e79e9c8a0c85d735ff98185918ec94ed7d175efc377012787aebcf3b80f0d90b) >>> libraw1394 2.1.2 Collecting legal info COPYING.LIB: OK (sha256: 5bbcbb737e60fe9deba08ecbd00920cfcc3403ba2e534c64fdeea49d6bb87509) >>> libtpl 1.6.1 Collecting legal info LICENSE: OK (sha256: 8554ddb5779f1ad2f3ea6db1d0df622e63fca11f44bfc3c8b3c207ea0482c746) >>> lockdev 1.0.3 Collecting legal info LICENSE: OK (sha256: 5bbcbb737e60fe9deba08ecbd00920cfcc3403ba2e534c64fdeea49d6bb87509) >>> minissdpd 1.6.0 Collecting legal info LICENSE: OK (sha256: a0f853256954f388ce4fab5faaef6a1f5bcd5e682c3c7c70b07b7130e932a021) >>> nettle 3.9.1 Collecting legal info COPYING.LESSERv3: OK (sha256: a853c2ffec17057872340eee242ae4d96cbf2b520ae27d903e1b2fef1a5f9d1c) COPYINGv2: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> oniguruma 6.9.8 Collecting legal info COPYING: OK (sha256: 70ba5469ea0bab6e18a32d7009068f996503168d27be57747e08da34337ff26f) >>> host-patchelf 0.13 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> pptp-linux 1.10.0 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> sexpect 2.3.14 Collecting legal info LICENSE: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> sudo 1.9.13p3 Collecting legal info LICENSE.md: OK (sha256: ea33b3971e8e4d9657cd6794a952aaa71b22bd16745f1645455b6ead010e0a28) >>> tcpreplay 4.4.2 Collecting legal info docs/LICENSE: OK (sha256: 07cf5e92d475287a7d1663b33097f40cae5adf03ed8920fcd4374e3dfb48c8ad) >>> uacme 1.7.4 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> urandom-scripts Collecting legal info >>> utf8proc 2.8.0 Collecting legal info LICENSE.md: OK (sha256: 3b510150d34f248a221bb88e1d811238d6c6c18b51231822c42974c39bb07256) WARNING: the Buildroot source code has not been saved WARNING: gcc-final-12.3.0: cannot save license (HOST_GCC_FINAL_LICENSE_FILES not defined) WARNING: gcc-initial-12.3.0: cannot save license (HOST_GCC_INITIAL_LICENSE_FILES not defined) WARNING: aespipe-2.4f: cannot save license (AESPIPE_LICENSE_FILES not defined) Legal info produced in /home/autobuild/autobuild/instance-11/output-1/legal-info make: Leaving directory '/home/autobuild/autobuild/instance-11/buildroot'