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 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 27D9CC433EF for ; Mon, 15 Nov 2021 16:54:08 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 02EE161B3E for ; Mon, 15 Nov 2021 16:54:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230080AbhKOQ5C (ORCPT ); Mon, 15 Nov 2021 11:57:02 -0500 Received: from mail.kernel.org ([198.145.29.99]:41530 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230132AbhKOQ44 (ORCPT ); Mon, 15 Nov 2021 11:56:56 -0500 Received: by mail.kernel.org (Postfix) with ESMTPSA id 4842560174; Mon, 15 Nov 2021 16:54:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1636995241; bh=3FNl6NJ7Edt40xjz8EDKKNoUjrVzhfS62dUMrzwlhW0=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=HXl1mtiXlxCu9mgUtDiWTDOXzweFwF2zXOjEwI+m+JMatXdytM67ZedzikQrN67tW bleePpOT2HjlgRAMlLztFnhLwihVszzJ+tu3Jt54c9j7IbSu/xLBLq/Z3WqyLloF5l SN+Y4kl+jIdPJX5pv4Vf1SdIuT8JKLXLxZH1p8I7+2gpmOv4WMFxttL416nuv+mxi7 1PZpy7Ql4HK71DxUC8Zr+YvvVdEm54dlIG8Vdkh4kB/P3QoE2DpqrXx/++dk0ic+u5 kAKM+7XJ8EkvL5cyk2zuuJeXcJuxHg4QutjPIokGd+pezRmNt0qKMxk3tCryOFJSnO Kt4pplwNwvsCw== Date: Mon, 15 Nov 2021 08:54:00 -0800 From: "Darrick J. Wong" To: Bastian Germann Cc: linux-xfs@vger.kernel.org, Boian Bonev Subject: Re: [PATCH v2 3/4] debian: Fix FTBFS Message-ID: <20211115165400.GG24307@magnolia> References: <20211114224339.20246-1-bage@debian.org> <20211114224339.20246-4-bage@debian.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20211114224339.20246-4-bage@debian.org> Precedence: bulk List-ID: X-Mailing-List: linux-xfs@vger.kernel.org On Sun, Nov 14, 2021 at 11:43:38PM +0100, Bastian Germann wrote: > From: Boian Bonev > > With newer autotools install-sh is regenerated by libtoolize. > Copy the package's version after autogen. > > Link: https://bugs.debian.org/997656 > Signed-off-by: Boian Bonev > Signed-off-by: Bastian Germann /me wonders what exactly about our install-sh is so unique -- I guess it's DIST_ROOT (being picked up from DESTDIR?) and copying things to different locations? As a strict "just keep the keys out of the fire hose" measure this looks ok to me though. Reviewed-by: Darrick J. Wong --D > --- > debian/rules | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/debian/rules b/debian/rules > index e12814b3..615289b4 100755 > --- a/debian/rules > +++ b/debian/rules > @@ -50,6 +50,7 @@ config: .census > AUTOHEADER=/bin/true dh_autoreconf > dh_update_autotools_config > $(options) $(MAKE) $(PMAKEFLAGS) include/platform_defs.h > + cp -f include/install-sh . > touch .census > > dibuild: > -- > 2.33.1 > >