configure: Fix botched fix of .tarball-version access
Commit ece998e
fixed .tarball-version access from separate build tree
by adding $srcdir/ to it. That's wrong in m4_esyscmd(), because there
it runs at autoconf time, where $srcdir isn't necessary and doesn't
exist. Revert that part.
Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
parent
e87bef161f
commit
8e8bed5865
2 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@
|
|||
|
||||
AC_PREREQ(2.69)
|
||||
AC_INIT([Wolfpack Empire],
|
||||
m4_esyscmd([build-aux/git-version-gen $srcdir/.tarball-version]),
|
||||
m4_esyscmd([build-aux/git-version-gen .tarball-version]),
|
||||
[wolfpack@wolfpackempire.com], [empire],
|
||||
[http://www.wolfpackempire.com/])
|
||||
AC_CONFIG_SRCDIR([include/combat.h])
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
|
||||
AC_PREREQ(2.69)
|
||||
AC_INIT([Wolfpack Empire Client],
|
||||
m4_esyscmd([cat $srcdir/.tarball-version]),
|
||||
m4_esyscmd([cat .tarball-version]),
|
||||
[wolfpack@wolfpackempire.com],,
|
||||
[http://www.wolfpackempire.com/])
|
||||
AC_CONFIG_SRCDIR([empire.6])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue