From: Greg Kroah-Hartman Date: Mon, 12 Jul 2021 18:45:58 +0000 (+0200) Subject: scripts/quilt-mail: use -M instead of -m X-Git-Tag: v5.4.132~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=699664de7cce20e411515c2bc3dd075393328756;p=thirdparty%2Fkernel%2Fstable-queue.git scripts/quilt-mail: use -M instead of -m Turns out that too big of logs overflow bash, so use -M to get the mail message. Signed-off-by: Greg Kroah-Hartman --- diff --git a/scripts/quilt-mail b/scripts/quilt-mail index 4fe8cb1f810..6c7abeab07a 100755 --- a/scripts/quilt-mail +++ b/scripts/quilt-mail @@ -127,7 +127,7 @@ CC="stable@vger.kernel.org" SUBJECT="${FULL_VERSION} review" quilt mail --mbox ${TMP_DIR}/${MBOX} \ - -m "$(cat ${TMPFILE})" \ + -M "${TMPFILE}" \ --sender "${FROM}" \ --from "${FROM}" \ --to "${TO}" \