diff options
author | Ingmar Schraub <is@eseco.de> | 2009-08-28 11:33:56 +0200 |
---|---|---|
committer | Ingmar Schraub <is@eseco.de> | 2009-08-28 11:33:56 +0200 |
commit | 9ce4f4993ac302a0496185545cdba4a609c52cce (patch) | |
tree | de6cde487bf7b37329b71785cc5aebbbde1b091f /config/debug/duma.in | |
parent | 015719a12a11d34404b8af7f2231acfb2fc953bb (diff) | |
download | crosstool-ng-9ce4f4993ac302a0496185545cdba4a609c52cce.tar.gz crosstool-ng-9ce4f4993ac302a0496185545cdba4a609c52cce.tar.bz2 crosstool-ng-9ce4f4993ac302a0496185545cdba4a609c52cce.zip |
duma: fix version string.
DUMA uses '_' not '.' for major/minor/sub separation.
Diffstat (limited to 'config/debug/duma.in')
-rw-r--r-- | config/debug/duma.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/debug/duma.in b/config/debug/duma.in index 8c8caa42..987be65a 100644 --- a/config/debug/duma.in +++ b/config/debug/duma.in @@ -39,7 +39,7 @@ config DUMA_V_2_5_14 config DUMA_V_2_5_15 bool - prompt "2.5.15" + prompt "2_5_15" # CT_INSERT_VERSION_ABOVE # Don't remove above line! @@ -51,6 +51,6 @@ config DUMA_VERSION default "2_5_8" if DUMA_V_2_5_8 default "2_5_12" if DUMA_V_2_5_12 default "2_5_14" if DUMA_V_2_5_14 - default "2.5.15" if DUMA_V_2_5_15 + default "2_5_15" if DUMA_V_2_5_15 # CT_INSERT_VERSION_STRING_ABOVE # Don't remove above line! |