Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/devmanual:master commit in: general-concepts/filesystem/
Date: Sat, 27 Jun 2020 09:14:07
Message-Id: 1593249231.1e4a104c8d340c46994d19616753978b16e71812.ulm@gentoo
1 commit: 1e4a104c8d340c46994d19616753978b16e71812
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 21 07:53:53 2020 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 27 09:13:51 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=1e4a104c
7
8 general-concepts/filesystem: Correct description for /opt
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 general-concepts/filesystem/text.xml | 7 ++++---
14 1 file changed, 4 insertions(+), 3 deletions(-)
15
16 diff --git a/general-concepts/filesystem/text.xml b/general-concepts/filesystem/text.xml
17 index 2163bf3..e76cdcc 100644
18 --- a/general-concepts/filesystem/text.xml
19 +++ b/general-concepts/filesystem/text.xml
20 @@ -12,7 +12,7 @@ The basic filesystem layout and purpose is as follows:
21 <li><c>/bin</c>: Boot-critical applications</li>
22 <li><c>/etc</c>: System administrator controlled configuration files</li>
23 <li><c>/lib</c>: Boot-critical libraries</li>
24 - <li><c>/opt</c>: Binary-only applications.</li>
25 + <li><c>/opt</c>: Non-standard layout applications</li>
26 <li><c>/sbin</c>: System administrator boot-critical applications</li>
27 <li><c>/tmp</c>: Temporary data</li>
28 <li><c>/usr</c>: General applications
29 @@ -45,8 +45,9 @@ Any binary which links against a library under <c>/usr</c> must itself go into
30 </p>
31
32 <p>
33 -The <c>/opt</c> top-level should only be used for binary-only applications.
34 -Binary-only applications must not be installed outside of <c>/opt</c>.
35 +The <c>/opt</c> top-level should only be used for applications that
36 +do not conform to the standard filesystem layout. This particularly includes
37 +prebuilt software packages that expect being installed in a single directory.
38 </p>
39
40 <p>