Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: app-misc/s6-man/
Date: Thu, 08 Sep 2022 10:06:30
Message-Id: 1662631228.26c868eef83767d6e7672f8c73a2a0158dda3c26.andrewammerlaan@gentoo
1 commit: 26c868eef83767d6e7672f8c73a2a0158dda3c26
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 8 10:00:28 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 8 10:00:28 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=26c868ee
7
8 app-misc/s6-man: quote S variables
9
10 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
11
12 app-misc/s6-man/s6-man-9999.ebuild | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15 diff --git a/app-misc/s6-man/s6-man-9999.ebuild b/app-misc/s6-man/s6-man-9999.ebuild
16 index 05e7d03b2..12fff0678 100644
17 --- a/app-misc/s6-man/s6-man-9999.ebuild
18 +++ b/app-misc/s6-man/s6-man-9999.ebuild
19 @@ -17,7 +17,7 @@ src_compile() {
20 }
21
22 src_install() {
23 - ls -la ${S}
24 - doman ${S}/man7/*
25 - doman ${S}/man8/*
26 + ls -la "${S}"
27 + doman "${S}"/man7/*
28 + doman "${S}"/man8/*
29 }