From nobody Wed Apr 1 22:11:19 2026 Received: from todd.t-8ch.de (todd.t-8ch.de [159.69.126.157]) (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 793D5331222 for ; Wed, 1 Apr 2026 15:08:30 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=159.69.126.157 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775056111; cv=none; b=Vcj0yZTHk0eomRTSPrQ7a5wYev/iNOFmAsBQI+BRmLiaYVJwTx73GkokgORyC6Cp87zsShHhHAx7YakCofagUk3YTF+UzMgcTzzDNzKsXxeVTOx2i28vt+vyZfRYFKQyezhpEGA5dKM3B+7VPy9bMBhMPZL75boFfELrJa/elXk= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775056111; c=relaxed/simple; bh=Ywfjgs9/KGcrE7qVyfErwLt6YhtPSplxbn5XBuSMr84=; h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References: In-Reply-To:To:Cc; b=n9O09U+j7EFJ9baVYSL+eTQR63KV25GMubLIKZNuEmBoYX4njM0ZqvXXBFtcnjdYe5j92tmBasEmL/ioHOgmdxDNqbOml0N3Stxgu3mcuTHgJjqFJKkTm8TW17HD7xZtPVbX5MqabY9mJdgN/i5Rst+UYBXASmYlYBzHf19RWJo= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=weissschuh.net; spf=pass smtp.mailfrom=weissschuh.net; dkim=pass (1024-bit key) header.d=weissschuh.net header.i=@weissschuh.net header.b=duFHDzhF; arc=none smtp.client-ip=159.69.126.157 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=weissschuh.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=weissschuh.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=weissschuh.net header.i=@weissschuh.net header.b="duFHDzhF" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=weissschuh.net; s=mail; t=1775056108; bh=Ywfjgs9/KGcrE7qVyfErwLt6YhtPSplxbn5XBuSMr84=; h=From:Date:Subject:References:In-Reply-To:To:Cc:From; b=duFHDzhFQWl3d43Tftm+z2TJh1pdK0etXCy9xAj+q0vkvQdIkpbuDg5YLr1sCPEzO vNw4Mrfp9j+jy8EZHKhq5o1Dcy7IVSmYndmBTsqUbyWip7F/EB6VD4R0vtFNy7ArJk E/ughvVCzg4fG3QC+0M9pMS6PgCQHxY+O50Fj9F8= From: =?utf-8?q?Thomas_Wei=C3=9Fschuh?= Date: Wed, 01 Apr 2026 17:08:29 +0200 Subject: [PATCH 2/4] tools/nolibc: drop superfluous invocation of mkdir Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Message-Id: <20260401-nolibc-cleanup-v1-2-bcf4c9f5c1be@weissschuh.net> References: <20260401-nolibc-cleanup-v1-0-bcf4c9f5c1be@weissschuh.net> In-Reply-To: <20260401-nolibc-cleanup-v1-0-bcf4c9f5c1be@weissschuh.net> To: Willy Tarreau Cc: linux-kernel@vger.kernel.org, =?utf-8?q?Thomas_Wei=C3=9Fschuh?= X-Mailer: b4 0.15.1 X-Developer-Signature: v=1; a=ed25519-sha256; t=1775056108; l=725; i=linux@weissschuh.net; s=20221212; h=from:subject:message-id; bh=Ywfjgs9/KGcrE7qVyfErwLt6YhtPSplxbn5XBuSMr84=; b=j7yUx4cyMbAEJBJFwB+ZwSBExAeFUYG/V2cWbNshemh0lJUN6pv8KoCbx9oQCuEM0tVt6EhnT gCuINdaipukDjDrdALmFwDSOzd+5PJzyXcCR4TT/geyqoo3rRF2ZIc7 X-Developer-Key: i=linux@weissschuh.net; a=ed25519; pk=KcycQgFPX2wGR5azS7RhpBqedglOZVgRPfdFSPB1LNw= The call to 'mkdir -p $(OUTPUT)sysroot/include' will also create the sysroot directory. Drop the unnecessary explicit invocation of mkdir. Signed-off-by: Thomas Wei=C3=9Fschuh --- tools/include/nolibc/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/include/nolibc/Makefile b/tools/include/nolibc/Makefile index 47ba2bde6d44..df9304e6d818 100644 --- a/tools/include/nolibc/Makefile +++ b/tools/include/nolibc/Makefile @@ -97,7 +97,6 @@ help: =20 # installs headers for all archs at once. headers: - $(Q)mkdir -p "$(OUTPUT)sysroot" $(Q)mkdir -p "$(OUTPUT)sysroot/include" $(Q)cp --parents $(arch_files) $(all_files) "$(OUTPUT)sysroot/include/" =20 --=20 2.53.0