diff options
author | Austin Foxley <austinf@cetoncorp.com> | 2010-04-23 07:27:50 -0700 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2010-04-23 07:31:55 -0700 |
commit | cce1105f017744ad2d6b7b86d8a3160637bebea1 (patch) | |
tree | e5a0f1815806f2e1cbc1c928f5b1678f0bff3570 /Rules.mak | |
parent | 3bb2a677d2fa6fc43fa150b19132c35341ae0160 (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.mak | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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 |