From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 2FA83C127 for ; Wed, 13 Mar 2024 14:50:00 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1710341401; cv=none; b=iWJ4GY1IKhi8lW8TYG+OHtp4Yok5844yOxWZB9s04K+QKBSkbGzdCKXLMsA30PaWoVWqKLzTu6k7TlHbyhyyOGNOJqXiY+vTYyYxse9qu16Geqv8ORKaML60FyNXFv9t8RvdzSwpo2EmzatC94f7/Dy7fL+MIAa57DKx32C+Fdk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1710341401; c=relaxed/simple; bh=3R5XMPf4vzWIsYqtjWxStDmtNq4q/TTxcpM16FqESQo=; h=Date:To:From:Subject:Message-Id; b=ikj6P1qA9kO2SSr49Pjlqwuk5RbnyEGQoOGrNI3NU73v2lUcVwbI8nQDQ4H+vvcWP0m61bdnqtsjuZ2stnqTQnCZNn3r55iMjnZknj++qCtwC7OV0YbaiNcy3OPR/Z8uepXoUDxuuLhxi8pyz+1BwtfoI6tbC3UDZwUxHG6aeEs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b=QwSBio9h; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b="QwSBio9h" Received: by smtp.kernel.org (Postfix) with ESMTPSA id AE6B9C433C7; Wed, 13 Mar 2024 14:50:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1710341400; bh=3R5XMPf4vzWIsYqtjWxStDmtNq4q/TTxcpM16FqESQo=; h=Date:To:From:Subject:From; b=QwSBio9h8/QeJxmcgwfaNrt6qRrBkVz4J/UcZX+towyvu0T2EQfczEf3uHpxMADQh Y5lyhMiRMj6pOAanrS6RE0GNf4jCs1b9ymPzcSvRk0ipLZ28xs0q7z5fAUvNZzR9sA /Ahxr41pHUp2YunXxHsSXjEDNO2HZtFMRyMbXOTo= Date: Wed, 13 Mar 2024 07:49:59 -0700 To: mm-commits@vger.kernel.org,kernel@pengutronix.de,u.kleine-koenig@pengutronix.de,akpm@linux-foundation.org From: Andrew Morton Subject: [to-be-updated] lib-build_oid_registry-dont-mention-the-full-path-of-the-script-in-output.patch removed from -mm tree Message-Id: <20240313145000.AE6B9C433C7@smtp.kernel.org> Precedence: bulk X-Mailing-List: mm-commits@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: The quilt patch titled Subject: lib/build_OID_registry: Don't mention the full path of the script in output has been removed from the -mm tree. Its filename was lib-build_oid_registry-dont-mention-the-full-path-of-the-script-in-output.patch This patch was dropped because an updated version will be merged ------------------------------------------------------ From: Uwe Kleine-König Subject: lib/build_OID_registry: Don't mention the full path of the script in output Date: Mon, 11 Mar 2024 12:01:22 +0100 This change strips the full path of the script generating lib/oid_registry_data.c to just lib/build_OID_registry. The motivation for this change is Yocto emitting a build warning File /usr/src/debug/linux-lxatac/6.7-r0/lib/oid_registry_data.c in package linux-lxatac-src contains reference to TMPDIR [buildpaths] So this change brings us one step closer to make the build result reproducible independent of the build path. Link: https://lkml.kernel.org/r/20240311110121.459581-2-u.kleine-koenig@pengutronix.de Signed-off-by: Uwe Kleine-König Cc: Pengutronix Kernel Team Signed-off-by: Andrew Morton --- lib/build_OID_registry | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/lib/build_OID_registry~lib-build_oid_registry-dont-mention-the-full-path-of-the-script-in-output +++ a/lib/build_OID_registry @@ -35,7 +35,7 @@ close IN_FILE || die; # open C_FILE, ">$ARGV[1]" or die; print C_FILE "/*\n"; -print C_FILE " * Automatically generated by ", $0, ". Do not edit\n"; +print C_FILE " * Automatically generated by ", $0 =~ s#^\Q$ENV{'abs_srctree'}/\E##r, ". Do not edit\n"; print C_FILE " */\n"; # _ Patches currently in -mm which might be from u.kleine-koenig@pengutronix.de are