From patchwork Sun Feb 26 12:20:57 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Schantl X-Patchwork-Id: 6623 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4PPjQn74kqz3wfY for ; Sun, 26 Feb 2023 12:21:05 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4PPjQn3Jb2z1FC; Sun, 26 Feb 2023 12:21:05 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4PPjQn2dDNz2xHD; Sun, 26 Feb 2023 12:21:05 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4PPjQl6prjz2xHD for ; Sun, 26 Feb 2023 12:21:03 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4PPjQl0h6Yz1FC; Sun, 26 Feb 2023 12:21:02 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1677414063; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=CH/2VXs5IX66kh31lFVxixXN5wdaOjvzPEE68//CPII=; b=IAN2p7yOYCgFFfrPlRADzu1P8SNTUM8UTPbRRjcEV5L0pTQOZpj3PDFGYYQy3x/NcZaHAa 06YlokpAAGH5VDCw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1677414063; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=CH/2VXs5IX66kh31lFVxixXN5wdaOjvzPEE68//CPII=; b=Q9O0JRRo+xcxBelg/mFTfQDv6rLiouYV5jJLnUR5dqLtG9fwfH1owmTb20SEg1tP8wLNEw GQCAo4PoLqlWdQAIbyYt1F6cR1hWq2OGqsFAEnENOZeFbEUFkBLJO9pvUTEtQ1aDhu2YS+ L3Omf3F1s2fQMb4z1pCxYp/fJtoE/GeWCw/dRxA1lZU4QJCWpYZiUZddzb8eoRnabWP1W/ 6scopvuiWWMp6tCAEMVUb+FquQlpuCc0HHxryrTiHLP7+sbWW7BfH9kBsRYK8fIK7p5/o2 2XOlYbdEBKweVSo2A7uHEr1uCyLbTN3dhyYke1gC9ihA0hp3U0G0bKnwgVqcgw== From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH] tree: Install files into correct location Date: Sun, 26 Feb 2023 13:20:57 +0100 Message-Id: <20230226122057.273521-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Signed-off-by: Stefan Schantl --- tree/tree.nm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tree/tree.nm b/tree/tree.nm index 5c3cb32b1..895948bc4 100644 --- a/tree/tree.nm +++ b/tree/tree.nm @@ -5,7 +5,7 @@ name = tree version = 2.1.0 -release = 1 +release = 2 groups = Applications/File url = https://mama.indstate.edu/users/ice/tree/ @@ -27,8 +27,10 @@ build LDFLAGS="%{LDFLAGS}" install - make install BINDIR=%{BUILDROOT}%{bindir} \ - MANDIR=%{BUILDROOT}%{mandir}/man1 + make install \ + PREFIX=%{BUILDROOT}%{prefix} \ + BINDIR=%{BUILDROOT}%{bindir} \ + MANDIR=%{BUILDROOT}%{mandir} end end