summaryrefslogtreecommitdiff
path: root/Rules.mak
diff options
context:
space:
mode:
authorAustin Foxley <austinf@cetoncorp.com>2010-04-23 07:27:50 -0700
committerAustin Foxley <austinf@cetoncorp.com>2010-04-23 07:31:55 -0700
commitcce1105f017744ad2d6b7b86d8a3160637bebea1 (patch)
treee5a0f1815806f2e1cbc1c928f5b1678f0bff3570 /Rules.mak
parent3bb2a677d2fa6fc43fa150b19132c35341ae0160 (diff)
change ABI_VERSION back to just include the major number
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>
Diffstat (limited to 'Rules.mak')
-rw-r--r--Rules.mak4
1 files changed, 1 insertions, 3 deletions
diff --git a/Rules.mak b/Rules.mak
index c165c1c6f..882b6ba5c 100644
--- 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