The sender domain has a DMARC Reject/Quarantine policy which disallows sending mailing list messages using the original "From" header.
To mitigate this problem, the original message has been wrapped automatically by the mailing list software.
--- Begin Message ---Hello! This is part 1 of a patch to fix issue 2423 in Flyspray, kernel_menuconfig not working. This is not an upstream bug, it is due to the toolchain missing ncurses. make menuconfig relies on the /system's/ installation of ncurses, but make kernel_menuconfig invokes the /toolchain's/ ncurses. ncurses is missing, consequently the kconfig script can't be linked against it. This fixes pkg-config in the toolchain. Previously, pkg-config would expand an environment variable $STAGING_PREFIX, which is not defined, consequently the attempts variable assignmetn would cause pkg-config to fail with an error. Right now, anything relying on pkg-config works only because of sensible defaults and good fortune. Signed-off-by: Thomas Albers <thomas.game...@gmail.com> diff --git a/tools/pkg-config/files/pkg-config b/tools/pkg-config/files/pkg-config index 82cc74ffcb..b36a8c62f5 100755 --- a/tools/pkg-config/files/pkg-config +++ b/tools/pkg-config/files/pkg-config @@ -1,3 +1,3 @@ #!/bin/sh -pkg-config.real --define-variable=prefix=${STAGING_PREFIX} --define-variable=exec_prefix=${STAGING_PREFIX} --define-variable=bindir=${STAGING_PREFIX}/bin $@ +pkg-config.real --define-variable=prefix=${STAGING_DIR_HOST} --define-variable=exec_prefix=${STAGING_DIR_HOST} --define-variable=bindir=${STAGING_DIR_HOST}/bin $@
--- End Message ---
_______________________________________________ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/mailman/listinfo/openwrt-devel