summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorMichael Tokarev <mjt@tls.msk.ru>2013-02-07 20:52:14 +0400
committerMarc-André Lureau <marcandre.lureau@gmail.com>2013-02-07 19:33:14 +0100
commit9ffc614a6c2c81363f81719a31d3f369d0d51762 (patch)
tree32070b66c7107ff44d3da5c5d83d14f24b16f7d0 /configure.ac
parentdf09927c3bb921f51a3a1f6ca09063bf44f1ee5b (diff)
downloadspice-common-9ffc614a6c2c81363f81719a31d3f369d0d51762.tar.gz
spice-common-9ffc614a6c2c81363f81719a31d3f369d0d51762.tar.xz
spice-common-9ffc614a6c2c81363f81719a31d3f369d0d51762.zip
spice-common: remove version construction
Version string isn't used anywhere in spice-common, and there's no version for spice-common module per se, either. Hoever, configure.ac has this: AC_INIT([spice-common], [m4_esyscmd(build-aux/git-version-gen .tarball-version)], [spice-devel@lists.freedesktop.org]) But since git-version-gen script is not provided in spice-common module, multiple error messages are produced when generating configure (running autogen/autoreconf), like this: sh: ./build-aux/git-version-gen: not found (repeated about 50 times). The following trivial patch removes usage of build-aux/git-version-gen from AC_INIT and replaces it with a string "noversion", to stop these scary messages from being produced. Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index c4b0f08..b5cb960 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
AC_PREREQ([2.63])
AC_INIT([spice-common],
- [m4_esyscmd(build-aux/git-version-gen .tarball-version)],
+ [noversion],
[spice-devel@lists.freedesktop.org])
AC_CONFIG_SRCDIR([common/bitops.h])