From: Peter Korsgaard Date: Mon, 7 Apr 2008 07:59:03 +0000 (-0000) Subject: haserl: get rid of minor version in config names X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a2e3e3de8115af6fc082a3682bd2a390368c1bb7;p=buildroot.git haserl: get rid of minor version in config names Rename haserl config options to 0.8.x / 0.9.x so the config names don't change every time the version is bumped (similar to busysbox package). --- diff --git a/package/haserl/Config.in b/package/haserl/Config.in index 998b3ea9ae..4b8043d74c 100644 --- a/package/haserl/Config.in +++ b/package/haserl/Config.in @@ -10,18 +10,18 @@ config BR2_PACKAGE_HASERL choice prompt "Haserl version" - default BR2_PACKAGE_HASERL_VERSION_0_9_22 + default BR2_PACKAGE_HASERL_VERSION_0_9_X depends on BR2_PACKAGE_HASERL help Select the older stable version, or the newer developer version -config BR2_PACKAGE_HASERL_VERSION_0_8_0 - bool "v 0.8.0" +config BR2_PACKAGE_HASERL_VERSION_0_8_X + bool "v 0.8.x" help stable version -config BR2_PACKAGE_HASERL_VERSION_0_9_22 - bool "v 0.9.22" +config BR2_PACKAGE_HASERL_VERSION_0_9_X + bool "v 0.9.x" help developer version - seems OK though @@ -30,5 +30,5 @@ endchoice config BR2_PACKAGE_HASERL_VERSION string - default "0.8.0" if BR2_PACKAGE_HASERL_VERSION_0_8_0 - default "0.9.22" if BR2_PACKAGE_HASERL_VERSION_0_9_22 + default "0.8.0" if BR2_PACKAGE_HASERL_VERSION_0_8_X + default "0.9.22" if BR2_PACKAGE_HASERL_VERSION_0_9_X