Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 165361
Collapse All | Expand All

(-)ebuild-writing/text.xml (+1 lines)
Lines 28-31 Link Here
28
<include href="using-eclasses/"/>
28
<include href="using-eclasses/"/>
29
<include href="functions/"/>
29
<include href="functions/"/>
30
<include href="misc-files/"/>
30
<include href="misc-files/"/>
31
<include href="common-mistakes/"/>
31
</guide>
32
</guide>
(-)ebuild-writing/common-mistakes/text.xml (+24 lines)
Line 0 Link Here
1
<?xml version="1.0"?>
2
<guide self="ebuild-writing/common-mistakes/">
3
<chapter>
4
<title>Common Mistakes</title>
5
6
<body>
7
<p>
8
This section contains information on the common mistakes developers make when
9
writing ebuilds.
10
</p>
11
</body>
12
13
<section>
14
<title>Invalid use of <c>static</c> use-flag</title>
15
<body>
16
The <c>static</c> use-flag should only be used to make a binary use static
17
linking instead of dynamic linking.  It should not be used to make a library
18
install static libraries.  The package should always (if possible) install both
19
the dynamic and static libraries.
20
</body>
21
</section>
22
</chapter>
23
24
</guide>

Return to bug 165361