From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-174.mta0.migadu.com (out-174.mta0.migadu.com [91.218.175.174]) (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 4A90C55766; Mon, 18 Mar 2024 17:25:03 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.174 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1710782705; cv=none; b=hShmtpGq/PbS7ho0yzJ53q8e0eZd6Yl6LzAf9Fv/hTxzpSPbg0Rmg2df7X03XcNvxPT8MzvxueLnSvuoZLmoQkjjLs27evP0h50haGCNK/R2mGJUeZ/+jfA4Kgqrq20kOJ65UtMVTZ/XXoI850hihw+3SQktjhY4STPCp3/MrWw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1710782705; c=relaxed/simple; bh=dRwQGIJjcQCcbG/nv39ifGtF2OhFFWSOnXfgo7cUpZk=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=pTrTy1tbyS87iJMiEJPiQVg0YcAhZrFC9kVD7R/wBO8wBJLQLgxwJMJqti3pbOvp3lOdB2XTZcAnqIzFobF+pDdVm8AVFQuZLz3B5JDlLnpCQqFNjLP9WsjtA53f7NfRZtDhghuBB6Iv6KWfmVmIiFlDyOCrCG7fBHOrkIoUQ84= 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=qXAkRQFC; arc=none smtp.client-ip=91.218.175.174 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="qXAkRQFC" Date: Mon, 18 Mar 2024 17:24:56 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1710782701; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=zWGK09G8RtbS1Ej+sWUnnTckGMKYGUc3ngWPGG7e3lw=; b=qXAkRQFCZu286hM70up4c4+VnJs+j1BnibxlxJ3hGEvtwOkjaL0xIbDS95+2tvvdlfOmP9 A2bczjitMzwjWpQAo+yBEkmf3Cjg44BxYx9Zh/AALJunTULBkPdOsNAI0KR0fuY9wjtzxb SFKvWmyj3U86lgNFHSci29RneYTGPFs= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Oliver Upton To: Ethan Adams Cc: Peter Zijlstra , Ingo Molnar , Arnaldo Carvalho de Melo , Mark Rutland , Alexander Shishkin , Jiri Olsa , Namhyung Kim , Ian Rogers , Adrian Hunter , linux-perf-users@vger.kernel.org, linux-kernel@vger.kernel.org, Tycho Andersen Subject: Re: [PATCH] perf build: fix out of tree build Message-ID: References: <20240314222012.47193-1-j.ethan.adams@gmail.com> Precedence: bulk X-Mailing-List: linux-perf-users@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240314222012.47193-1-j.ethan.adams@gmail.com> X-Migadu-Flow: FLOW_OUT On Thu, Mar 14, 2024 at 03:20:12PM -0700, Ethan Adams wrote: > It seems that a previous modification to sysreg-defs, which corrected > emitting the headaer to the specified output directory, exposed missing typo: header > subdir, prefix variables. This breaks out of tree builds of perf as the > file is now built into the output directory, but still tries to descend > into output directory as a subdir. > > Fixes: a29ee6aea703 ("perf build: Ensure sysreg-defs Makefile respects output dir") > Tested-by: Tycho Andersen > Reviewed-by: Tycho Andersen > Signed-off-by: Ethan Adams Reviewed-by: Oliver Upton -- Thanks, Oliver