diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2013-09-27 20:36:58 +0200 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2013-09-27 20:36:58 +0200 |
commit | 3bdf8aad39d39168d096d3042b659fb9d2ef1651 (patch) | |
tree | 629800ec4e65696dcd1fc2d2642100594df5fe62 /config.make.in | |
parent | 559ee510cb7058d9e0d3384302be4a0053e179cf (diff) |
Decouple the Hurd version from the package version.
* config.make.in (package-version): New variable.
(hurd-version): Set to 0.3.
* Makeconf (%: %.sh): Use package-version instead of hurd-version.
* Makefile (stamp-version): Likewise.
* doc/Makefile (stamp-version): Likewise.
Diffstat (limited to 'config.make.in')
-rw-r--r-- | config.make.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/config.make.in b/config.make.in index 4d2abcca..5bfc777e 100644 --- a/config.make.in +++ b/config.make.in @@ -1,7 +1,9 @@ # @configure_input@ -# What version of the Hurd is this? -hurd-version := @PACKAGE_VERSION@ +package-version := @PACKAGE_VERSION@ +# What version of the Hurd is this? For compatibility (libraries' SONAMEs), +# hard-code this to 0.3 instead of coupling with PACKAGE_VERSION. +hurd-version := 0.3 # Machine architecture. machine = @host_cpu@ |