diff options
author | Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com> | 2011-06-03 17:21:56 +0200 |
---|---|---|
committer | Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com> | 2011-06-03 17:21:56 +0200 |
commit | d147fbb201e5ab4e16a525e0289a7fdcfcccf203 (patch) | |
tree | 9fce209f26392303ed599ace0d263e742c871eb0 /config/toolchain.in | |
parent | 7f504c6c278a4d484a0cbbd25af4bd41e655d6f8 (diff) | |
download | crosstool-ng-d147fbb201e5ab4e16a525e0289a7fdcfcccf203.tar.gz crosstool-ng-d147fbb201e5ab4e16a525e0289a7fdcfcccf203.tar.bz2 crosstool-ng-d147fbb201e5ab4e16a525e0289a7fdcfcccf203.zip |
kconfig: prepend CT-NG's version tag to PKGVERSION
"crosstool-NG-${CT_VERSION}" is currently the default for TOOLCHAIN_PKGVERSION,
and this options is passed as is to --with-pkgversion.
This patch prepends "crosstool-NG ${CT_VERSION}" to TOOLCHAIN_PKGVERSION before
passing it to --with-pkgversion.
Signed-off-by: "Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com>
Diffstat (limited to 'config/toolchain.in')
-rw-r--r-- | config/toolchain.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/config/toolchain.in b/config/toolchain.in index bc8f19c1..246427d7 100644 --- a/config/toolchain.in +++ b/config/toolchain.in @@ -78,13 +78,18 @@ config STATIC_TOOLCHAIN config TOOLCHAIN_PKGVERSION string prompt "Toolchain ID string" - default "crosstool-NG-${CT_VERSION}" + default "" help Specify a string that identifies your package. You may wish to include a build number or build date. This version string will be included in the output of gcc --version, and also in binutils, eglibc, gdb and gdbserver. + If this string is left empty, the actual package version will be: + "crosstool-NG ${CT_VERSION}" + Otherwise, it will be: + "crosstool-NG ${CT_VERSION} - ${CT_TOOLCHAIN_PKGVERSION}" + This is passed to the configure flag --with-pkgversion. config TOOLCHAIN_BUGURL |