=> Bootstrap dependency digest>=20010302: found digest-20190127 => Checksum SHA1 OK for openldap-2.5.7.tgz => Checksum RMD160 OK for openldap-2.5.7.tgz => Checksum SHA512 OK for openldap-2.5.7.tgz ===> Installing dependencies for lmdb-0.9.29 => Tool dependency gmake>=3.81: found gmake-4.3nb2 => Tool dependency checkperms>=1.1: found checkperms-1.12 => Build dependency cwrappers>=20150314: found cwrappers-20180325 ===> Skipping vulnerability checks. WARNING: No /usr/pkg/pkgdb/pkg-vulnerabilities file found. WARNING: To fix run: `/usr/sbin/pkg_admin -K /usr/pkg/pkgdb fetch-pkg-vulnerabilities'. ===> Overriding tools for lmdb-0.9.29 ===> Extracting for lmdb-0.9.29 ===> Patching for lmdb-0.9.29 => Applying pkgsrc patches for lmdb-0.9.29 => Verifying /amd/pkgsrc/CHROOT/P/pkgsrc/databases/lmdb/patches/patch-libraries_liblmdb_Makefile => Applying pkgsrc patch /amd/pkgsrc/CHROOT/P/pkgsrc/databases/lmdb/patches/patch-libraries_liblmdb_Makefile Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |$NetBSD: patch-libraries_liblmdb_Makefile,v 1.5 2020/03/15 21:01:47 tnn Exp $ | |Use proper install commands. | |--- libraries/liblmdb/Makefile.orig 2020-01-30 17:58:35.000000000 +0000 |+++ libraries/liblmdb/Makefile -------------------------- Patching file libraries/liblmdb/Makefile using Plan A... Hunk #1 succeeded at 49. Hunk #2 succeeded at 68. done ===> Creating toolchain wrappers for lmdb-0.9.29 ===> Configuring for lmdb-0.9.29 => Checking for portability problems in extracted files ERROR: [check-portability.awk] => Found test ... == ...: ERROR: [check-portability.awk] configure:22850: if test $ol_enable_slapd == no && test $ol_enable_balancer != yes ; then Explanation: =========================================================================== The "test" command, as well as the "[" command, are not required to know the "==" operator. Only a few implementations like bash and some versions of ksh support it. When you run "test foo == foo" on a platform that does not support the "==" operator, the result will be "false" instead of "true". This can lead to unexpected behavior. There are two ways to fix this error message. If the file that contains the "test ==" is needed for building the package, you should create a patch for it, replacing the "==" operator with "=". If the file is not needed, add its name to the CHECK_PORTABILITY_SKIP variable in the package Makefile. =========================================================================== *** Error code 1 Stop. make[1]: stopped in /amd/pkgsrc/CHROOT/P/pkgsrc/databases/lmdb *** Error code 1 Stop. make: stopped in /amd/pkgsrc/CHROOT/P/pkgsrc/databases/lmdb