projects
/
openwrt
/
staging
/
rmilecki.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c37a954
)
toolchain/uClibc: Make sure there's always a UCLIBC_VERSION_*
author
Jonas Gorski
<jogo@openwrt.org>
Tue, 2 Aug 2011 23:32:44 +0000
(23:32 +0000)
committer
Jonas Gorski
<jogo@openwrt.org>
Tue, 2 Aug 2011 23:32:44 +0000
(23:32 +0000)
UCLIBC_VERSION_* was only defined when toolchain options was enabled,
breaking packages depending on (not) having certain uClibc versions.
SVN-Revision: 27882
toolchain/uClibc/Config.version
patch
|
blob
|
history
diff --git
a/toolchain/uClibc/Config.version
b/toolchain/uClibc/Config.version
index 843a499bda7632d5acc43559dcfb13697eb03112..d122ccce345df0732f97abaddd54c6f0956e8e8b 100644
(file)
--- a/
toolchain/uClibc/Config.version
+++ b/
toolchain/uClibc/Config.version
@@
-3,3
+3,11
@@
config UCLIBC_VERSION
depends on USE_UCLIBC
default "0.9.32" if UCLIBC_VERSION_0_9_32
default "0.9.32"
+
+if !TOOLCHAINOPTS
+
+ config UCLIBC_VERSION_0_9_32
+ default y if USE_UCLIBC
+ bool
+
+endif