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 /Makeconf | |
parent | 559ee510cb7058d9e0d3384302be4a0053e179cf (diff) | |
download | hurd-3bdf8aad39d39168d096d3042b659fb9d2ef1651.tar.gz hurd-3bdf8aad39d39168d096d3042b659fb9d2ef1651.tar.bz2 hurd-3bdf8aad39d39168d096d3042b659fb9d2ef1651.zip |
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 'Makeconf')
-rw-r--r-- | Makeconf | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ # Generic configuration for Hurd compilation -*- makefile-gmake -*- # Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003, -# 2006, 2007, 2008, 2010, 2011, 2012 Free Software Foundation, Inc. +# 2006, 2007, 2008, 2010, 2011, 2012, 2013 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as @@ -647,5 +647,5 @@ endef # Rule to make executable shell scripts from .sh files. %: %.sh $(..)config.make - sed -e 's/STANDARD_HURD_VERSION_\(.[^_]*\)_/\1 (GNU Hurd) $(hurd-version)/' < $< > $@ + sed -e 's/STANDARD_HURD_VERSION_\(.[^_]*\)_/\1 (GNU Hurd) $(package-version)/' < $< > $@ chmod +x $@ |