diff options
author | Que Quotion <quequotion@gmail.com> | 2019-03-13 01:01:43 +0900 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2019-03-19 14:24:18 +1000 |
commit | 7b15918b6526b52823b869050e430b24b30c3ca1 (patch) | |
tree | 1832c2287b5ed305a0eb5d279e3f59a522da9c4b /doc | |
parent | ee5f24e50ca5792d37cfbdcbb134fb58777d3eb8 (diff) | |
download | pacman-7b15918b6526b52823b869050e430b24b30c3ca1.tar.xz |
Clarify that build_options only apply during build()
Signed-off-by: Que Quotion <quequotion@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/PKGBUILD.5.asciidoc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/PKGBUILD.5.asciidoc b/doc/PKGBUILD.5.asciidoc index e8ce691f..7d6f3271 100644 --- a/doc/PKGBUILD.5.asciidoc +++ b/doc/PKGBUILD.5.asciidoc @@ -296,23 +296,23 @@ underscore and the architecture name e.g., 'replaces_x86_64=()'. Compress man and info pages with gzip. *ccache*;; - Allow the use of ccache during build. More useful in its negative + Allow the use of ccache during `build()`. More useful in its negative form `!ccache` with select packages that have problems building with ccache. *distcc*;; - Allow the use of distcc during build. More useful in its negative + Allow the use of distcc during `build()`. More useful in its negative form `!distcc` with select packages that have problems building with distcc. *buildflags*;; Allow the use of user-specific buildflags (CPPFLAGS, CFLAGS, CXXFLAGS, - LDFLAGS) during build as specified in linkman:makepkg.conf[5]. More + LDFLAGS) during `build()` as specified in linkman:makepkg.conf[5]. More useful in its negative form `!buildflags` with select packages that have problems building with custom buildflags. *makeflags*;; - Allow the use of user-specific makeflags during build as specified + Allow the use of user-specific makeflags during `build()` as specified in linkman:makepkg.conf[5]. More useful in its negative form `!makeflags` with select packages that have problems building with custom makeflags such as `-j2` (or higher). |