Просмотр исходного кода

busybox: fix symbol names, reported by Alex Brand

Waldemar Brodkorb 9 лет назад
Родитель
Сommit
18202cc998
2 измененных файлов с 4 добавлено и 4 удалено
  1. 1 1
      package/busybox/Makefile
  2. 3 3
      package/busybox/config/shell/Config.in

+ 1 - 1
package/busybox/Makefile

@@ -5,7 +5,7 @@ include $(ADK_TOPDIR)/rules.mk
 
 
 PKG_NAME:=		busybox
 PKG_NAME:=		busybox
 PKG_VERSION:=		1.26.2
 PKG_VERSION:=		1.26.2
-PKG_RELEASE:=		1
+PKG_RELEASE:=		2
 PKG_HASH:=		da3e44913fc1a9c9b7c5337ea5292da518683cbff32be630777f565d6036af16
 PKG_HASH:=		da3e44913fc1a9c9b7c5337ea5292da518683cbff32be630777f565d6036af16
 PKG_DESCR:=		core utilities for embedded systems
 PKG_DESCR:=		core utilities for embedded systems
 PKG_SECTION:=		base/apps
 PKG_SECTION:=		base/apps

+ 3 - 3
package/busybox/config/shell/Config.in

@@ -331,17 +331,17 @@ config BUSYBOX_BASH_IS_HUSH
 
 
 endchoice
 endchoice
 
 
-config BUSYBOX_SH_MATH_SUPPORT
+config BUSYBOX_FEATURE_SH_MATH
 	bool "POSIX math support"
 	bool "POSIX math support"
 	default y
 	default y
 	depends on BUSYBOX_ASH || BUSYBOX_HUSH
 	depends on BUSYBOX_ASH || BUSYBOX_HUSH
 	help
 	help
 	  Enable math support in the shell via $((...)) syntax.
 	  Enable math support in the shell via $((...)) syntax.
 
 
-config BUSYBOX_SH_MATH_SUPPORT_64
+config BUSYBOX_FEATURE_SH_MATH_64
 	bool "Extend POSIX math support to 64 bit"
 	bool "Extend POSIX math support to 64 bit"
 	default y
 	default y
-	depends on BUSYBOX_SH_MATH_SUPPORT
+	depends on BUSYBOX_FEATURE_SH_MATH
 	help
 	help
 	  Enable 64-bit math support in the shell. This will make the shell
 	  Enable 64-bit math support in the shell. This will make the shell
 	  slightly larger, but will allow computation with very large numbers.
 	  slightly larger, but will allow computation with very large numbers.