Skip to content

Commit

Permalink
change ABI_VERSION back to just include the major number
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Austin Foxley committed Apr 23, 2010
1 parent 3bb2a67 commit cce1105
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Rules.mak
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cce1105

Please sign in to comment.