From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1AF26C432C0 for ; Wed, 27 Nov 2019 21:35:01 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E43B320665 for ; Wed, 27 Nov 2019 21:35:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574890501; bh=S0mzF6aUuCpWNC8VmiehPqJiME194Ey3syXdysl0clM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=IRlDlhLt0BvA63WjtOOG5ZX6wDd51MF+gDjmAYqVq0ugVu5c9kyDPDDtsC4Dd5b96 6Ycpq4HYOg7nPnB8PRfjPYZ4QPueV6Fn/9u/MOj/pnZeLYZm6f06+Wo6x1nHq1z2c/ 6XpEg7N3H803ShN/pVlxNjhunpP+LVd32V/YPvF0= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730824AbfK0VfA (ORCPT ); Wed, 27 Nov 2019 16:35:00 -0500 Received: from mail.kernel.org ([198.145.29.99]:36056 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728869AbfK0UuN (ORCPT ); Wed, 27 Nov 2019 15:50:13 -0500 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 2EE5721843; Wed, 27 Nov 2019 20:50:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574887812; bh=S0mzF6aUuCpWNC8VmiehPqJiME194Ey3syXdysl0clM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=gyfnFMayvbnADpno1OkYiEcTXqSl2ejJo6SLu/7xSWMp2SwhnLOIodtQ7pcz37aBu zJgWr+i+enXC2MSOUV2Z/bsAOpZffJVhvFSTj7R5DTs/qtRcI5SdizQ92fHwb+jgL+ 7y8fr9p7q9R11VxMS/eTJT9veX2p/iTuiBvCX+6Y= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Michael Ellerman , Sasha Levin Subject: [PATCH 4.14 105/211] selftests/powerpc/switch_endian: Fix out-of-tree build Date: Wed, 27 Nov 2019 21:30:38 +0100 Message-Id: <20191127203103.610385271@linuxfoundation.org> X-Mailer: git-send-email 2.24.0 In-Reply-To: <20191127203049.431810767@linuxfoundation.org> References: <20191127203049.431810767@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Michael Ellerman [ Upstream commit 266bac361d5677e61a6815bd29abeb3bdced2b07 ] For the out-of-tree build to work we need to tell switch_endian_test to look for check-reversed.S in $(OUTPUT). Signed-off-by: Michael Ellerman Signed-off-by: Sasha Levin --- tools/testing/selftests/powerpc/switch_endian/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/testing/selftests/powerpc/switch_endian/Makefile b/tools/testing/selftests/powerpc/switch_endian/Makefile index 30b8ff8fb82e7..e4cedfe9753d7 100644 --- a/tools/testing/selftests/powerpc/switch_endian/Makefile +++ b/tools/testing/selftests/powerpc/switch_endian/Makefile @@ -7,6 +7,7 @@ EXTRA_CLEAN = $(OUTPUT)/*.o $(OUTPUT)/check-reversed.S include ../../lib.mk +$(OUTPUT)/switch_endian_test: ASFLAGS += -I $(OUTPUT) $(OUTPUT)/switch_endian_test: $(OUTPUT)/check-reversed.S $(OUTPUT)/check-reversed.o: $(OUTPUT)/check.o -- 2.20.1