From mboxrd@z Thu Jan 1 00:00:00 1970 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 Content-Type: multipart/mixed; boundary="===============4731615479181494914==" List-Id: --===============4731615479181494914== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit 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 -- 2.30.2 --===============4731615479181494914==--