diff options
author | Bagas Sanjaya <bagasdotme@gmail.com> | 2020-10-11 19:39:42 +0700 |
---|---|---|
committer | Bagas Sanjaya <bagasdotme@gmail.com> | 2020-10-13 16:09:35 +0700 |
commit | 19f18491638d3f1435e649807fec3a33b2ebd133 (patch) | |
tree | 1f2d680d13e5a4956bd33850acb69acd8d011dca | |
parent | 99ce9d38611d959076c7927ba3da428a28a54f76 (diff) | |
download | crosstool-ng-19f18491638d3f1435e649807fec3a33b2ebd133.tar.gz crosstool-ng-19f18491638d3f1435e649807fec3a33b2ebd133.tar.bz2 crosstool-ng-19f18491638d3f1435e649807fec3a33b2ebd133.zip |
Clarify tree layout of local patches directory
Currently the help for LOCAL_PATCH_DIR did not specify the tree layout
of custom patches directory. This commit adds such explanation.
For example, the bundled patches for GCC are placed under
packages/gcc/<gcc-version>, thus custom (local) GCC patches should be
placed under $LOCAL_PATCH_DIR/gcc/<gcc-version>.
Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
-rw-r--r-- | config/global/extract.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/config/global/extract.in b/config/global/extract.in index ba7f5f4c..4e624801 100644 --- a/config/global/extract.in +++ b/config/global/extract.in @@ -107,5 +107,7 @@ config LOCAL_PATCH_DIR help Enter the custom patch directory here. - Note that you must ensure that the directory containing your custom - patches is arranged the same way the official directory is. + Note that you must ensure that tree layout of the directory containing + your custom patches match the bundled patches one. For example, if you + have custom GCC patches for <gcc-version>, place them under + $LOCAL_PATCH_DIR/gcc/<gcc-version>. |