From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-172.mta0.migadu.com (out-172.mta0.migadu.com [91.218.175.172]) (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 EDF181F5437 for ; Sat, 18 Jul 2026 04:03:23 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.172 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784347406; cv=none; b=FhdN7pVT80bbijyH0XbBmbDyQMhGnTB+apJDieMaOA2F97lKpggtA9NYSyhepwLM1T6eFyIdso7lhkbpouPVoTBGk+bOQOkUa6kS3SH2ytWGky0uHokdqH6m7TEmq8rMoMrtEY5gpdN9MHad5YdQL16qU5L8vZXNngDydgMwgOc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784347406; c=relaxed/simple; bh=ouJbhNEySa6wtHXigz28qZUwmmTdTjqDteAFtha4ajo=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=SqnM8jvwkQul8GGfwz1NvyOvXcS4e8UEJOkLHB+wrjy7By6ksxSBV1vO7Stw4mY0iEvHc45U8f0uLeWA7gsvHWlr6aTpL6ma3NpTFz14LRdkuu79o0irgEKw4fmlRT1QitsS0JSnBqenAtVKB/el9/G9w2pznuJ6xY2Ejs6Sdgs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=xhf7Iyrk; arc=none smtp.client-ip=91.218.175.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="xhf7Iyrk" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1784347391; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=ffPTsUAYPTy3t9bpVraPeoscXLu0Pse7ijb8l0qwCA8=; b=xhf7Iyrk+q4u5Qvic4KSm9oiycSPxJPavJa57bf9bbvkM86NT/5YDfmqFfJ9zmp3VcZ+iC 0n92cW+Nu59RtKrKo/JkONKdjzmf5uLkkX7yDNjeGzXJescNKb9RcnhYHVEQiLXdWn7rN+ GZmTGyT8efxCYGJLDdI4DNe4MLJzOKM= From: Yuntao Wang To: linux-kernel@vger.kernel.org, linux-kbuild@vger.kernel.org Cc: Nathan Chancellor , Nicolas Schier , Miguel Ojeda , Gary Guo , Alice Ryhl , Thomas De Schampheleire , Tamir Duberstein , Alexandre Courbot , Yuntao Wang Subject: [PATCH] kbuild: set the initial value of subdir-rustflags-y Date: Sat, 18 Jul 2026 12:01:46 +0800 Message-ID: <20260718040146.294700-1-yuntao.wang@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT Initialize subdir-rustflags-y to an empty value to prevent it from being inadvertently affected by an environment variable of the same name. Signed-off-by: Yuntao Wang --- scripts/Makefile.build | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/Makefile.build b/scripts/Makefile.build index 911745743246..e60d97ef535a 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build @@ -28,6 +28,7 @@ ldflags-y := subdir-asflags-y := subdir-ccflags-y := +subdir-rustflags-y := # Read auto.conf if it exists, otherwise ignore -include $(objtree)/include/config/auto.conf -- 2.54.0