commit: 26c868eef83767d6e7672f8c73a2a0158dda3c26
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 8 10:00:28 2022 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Thu Sep 8 10:00:28 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=26c868ee
app-misc/s6-man: quote S variables
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
app-misc/s6-man/s6-man-9999.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/app-misc/s6-man/s6-man-9999.ebuild
b/app-misc/s6-man/s6-man-9999.ebuild
index 05e7d03b2..12fff0678 100644
--- a/app-misc/s6-man/s6-man-9999.ebuild
+++ b/app-misc/s6-man/s6-man-9999.ebuild
@@ -17,7 +17,7 @@ src_compile() {
}
src_install() {
- ls -la ${S}
- doman ${S}/man7/*
- doman ${S}/man8/*
+ ls -la "${S}"
+ doman "${S}"/man7/*
+ doman "${S}"/man8/*
}