summaryrefslogtreecommitdiff
path: root/config_host
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-02-01 14:19:18 +0100
committerLuboš Luňák <l.lunak@suse.cz>2013-02-01 14:19:18 +0100
commitfdafe9505ce78a8fb7f65c319c2e577bc96f6ff6 (patch)
tree4c3102f3b2bd0af76d6366b98711571614357b20 /config_host
parentebdd616580bb0d367b78ba0fe3fa56157b90c3ab (diff)
fix documentation for config_xxx.h files
Not that I know why the directory had to be renamed in the first place. Change-Id: I3e4d07591876636ae4930240ac1acc68522fb94f
Diffstat (limited to 'config_host')
-rw-r--r--config_host/README14
1 files changed, 7 insertions, 7 deletions
diff --git a/config_host/README b/config_host/README
index fd58b64045bb..349c4bc9f158 100644
--- a/config_host/README
+++ b/config_host/README
@@ -11,14 +11,14 @@ Adding a new setting:
=====================
- do AC_DEFINE(HAVE_FOO) in configure.ac when a setting should be set
-- choose the proper config/config_xxx.h file to use
+- choose the proper config_host/config_xxx.h file to use
- if it is a global setting (such as availability of a compiler feature),
- use config/config_global.h
- - otherwise check if there is a matching config/config_hxx.h file
+ use config_host/config_global.h
+ - otherwise check if there is a matching config_host/config_hxx.h file
- if none matches, add a new one:
- - add config/config_xxx.h.in here, with just #ifndef include guard
- - add AC_CONFIG_HEADERS([config/config_xxx.h]) next to the others
+ - add config_host/config_xxx.h.in here, with just #ifndef include guard
+ - add AC_CONFIG_HEADERS([config_host/config_xxx.h]) next to the others
in configure.ac
- - add config_hxx.h to config/.gitignore
-- add #undef HAVE_FOO to the config/config_hxx.h , possibly with a comment
+ - add config_hxx.h to config_host/.gitignore
+- add #undef HAVE_FOO to the config_host/config_hxx.h , possibly with a comment
- add #include <config_xxx.h> before any #ifdef HAVE_XXX in a source file