mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-21 14:03:18 -07:00
use VERSION in configure.ac
The generated usr/bin/byobu did not track the version specified in configure.ac (via the AC_INIT macro) which lead to an incorrect naming of the distribution file when using "make dist". This commit makes usr/bin/byobu.in reference the autoconf VERSION variable (derived from the AC_INIT macro) to ensure that there is one source of version information.
This commit is contained in:
parent
cd253f0229
commit
50ebeed7a9
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
||||||
# Process this file with autoconf to produce a configure script.
|
# Process this file with autoconf to produce a configure script.
|
||||||
|
|
||||||
AC_PREREQ([2.61])
|
AC_PREREQ([2.61])
|
||||||
AC_INIT([byobu], [5.121], [http://byobu.org])
|
AC_INIT([byobu], [6.12], [http://byobu.org])
|
||||||
AC_CONFIG_SRCDIR([usr/bin/byobu.in])
|
AC_CONFIG_SRCDIR([usr/bin/byobu.in])
|
||||||
AM_INIT_AUTOMAKE([foreign])
|
AM_INIT_AUTOMAKE([foreign])
|
||||||
AC_PROG_LN_S
|
AC_PROG_LN_S
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
VERSION=6.12
|
VERSION=@VERSION@
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
|
||||||
# All sorts of things go wrong if you don't own your $HOME dir.
|
# All sorts of things go wrong if you don't own your $HOME dir.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue