OSDN Git Service

change ABI_VERSION back to just include the major number
authorAustin Foxley <austinf@cetoncorp.com>
Fri, 23 Apr 2010 14:27:50 +0000 (07:27 -0700)
committerAustin Foxley <austinf@cetoncorp.com>
Fri, 23 Apr 2010 14:31:55 +0000 (07:31 -0700)
By default, GCC hard codes the name for ld.so to /lib/ld-uClibc.so.0
so our default should match that. If distribution makers want to change
it, they need to change the default gcc configuration as well.

Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Rules.mak

index c165c1c..882b6ba 100644 (file)
--- a/Rules.mak
+++ b/Rules.mak
@@ -108,9 +108,7 @@ MINOR_VERSION := 9
 SUBLEVEL      := 32
 EXTRAVERSION  :=-git
 VERSION       := $(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL)
-# no abi compat between sublevel releases yet, so we use full version
-# for soname
-ABI_VERSION   := $(VERSION)
+ABI_VERSION   := $(MAJOR_VERSION)
 ifneq ($(EXTRAVERSION),)
 VERSION       := $(VERSION)$(EXTRAVERSION)
 endif