From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [dpdk-stable] [PATCH] mk: fix permissions when using make install Date: Thu, 09 Aug 2018 18:16:53 +0200 Message-ID: <2177083.Ak4RRs4Y8F@xps> References: <20180809152235.45376-1-bruce.richardson@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: stable@dpdk.org, dev@dpdk.org To: Bruce Richardson Return-path: In-Reply-To: <20180809152235.45376-1-bruce.richardson@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 09/08/2018 17:22, Bruce Richardson: > When using make install, the permissions of the resulting file should be > those of the user using make install, not those of the user who ran the > build. This would not be the case when a user explicitly runs: > > "make && sudo make install" > > Fix this by changing "cp -a", which preserves all attributes, to > "cp -dR --preserve=timestamp", and by adding the flags > "--no-same-owner --no-same-permissions" to the calls to tar. > > Fixes: 1fa0fd9d6b42 ("mk: allow to specify DESTDIR in build rule") > Fixes: 6b62a72a70d0 ("mk: install a standard cutomizable tree") > Fixes: 576de42b83e5 ("doc: render and install man pages") > > CC: stable@dpdk.org > Signed-off-by: Bruce Richardson Acked-by: Thomas Monjalon Applied, thanks