diff options
author | Alexey Neyman <stilor@att.net> | 2017-08-24 14:58:14 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-08-24 14:58:14 -0700 |
commit | 4c1a12f5ddaaf418cea4ca41bac3f5d6f822ee6d (patch) | |
tree | d1e81bb04f39b0cb4e537093e45ad0d6cb144001 /maintainer/kconfig-choice.template | |
parent | 2d7efa5591a2cd721adf0888f6aed998dc28fb84 (diff) | |
download | crosstool-ng-4c1a12f5ddaaf418cea4ca41bac3f5d6f822ee6d.tar.gz crosstool-ng-4c1a12f5ddaaf418cea4ca41bac3f5d6f822ee6d.tar.bz2 crosstool-ng-4c1a12f5ddaaf418cea4ca41bac3f5d6f822ee6d.zip |
Add "postprocessing" to substituted variables
... and reduce the number of variables defined explicitly.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'maintainer/kconfig-choice.template')
-rw-r--r-- | maintainer/kconfig-choice.template | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/maintainer/kconfig-choice.template b/maintainer/kconfig-choice.template index 12ea12ca..b2ca2176 100644 --- a/maintainer/kconfig-choice.template +++ b/maintainer/kconfig-choice.template @@ -2,11 +2,11 @@ # DO NOT EDIT! This file is automatically generated. # -choice GEN_CHOICE_@@prefix@@ +choice GEN_CHOICE_@@dir|@@ bool "@@label@@" #!foreach choice -config @@prefix@@_@@kcfg_choice@@ +config @@dir|@@_@@choice|@@ bool "@@choice@@" #!foreach dependency @@depline@@ @@ -19,14 +19,14 @@ config @@prefix@@_@@kcfg_choice@@ #!end-foreach endchoice -config @@prefix@@ +config @@dir|@@ string #!foreach choice - default "@@choice@@" if @@prefix@@_@@kcfg_choice@@ + default "@@choice@@" if @@dir|@@_@@choice|@@ #!end-foreach #!foreach choice -if @@prefix@@_@@kcfg_choice@@ +if @@dir|@@_@@choice|@@ source "config/@@dir@@/@@choice@@.in" endif #!end-foreach |