diff mbox

[3/3] build: Fix "make distcheck"

Message ID 1432505406-25240-4-git-send-email-mail@rotty.xx.vu
State Accepted
Headers show

Commit Message

mail@rotty.xx.vu May 24, 2015, 10:10 p.m. UTC
From: Andreas Rottmann <a.rottmann@gmx.at>

Running "make distcheck" failed trying to generate ".version" into the
read-only unpacked source directory. Actually shipping ".version" in the
tarball fixes that.

The error manifested as:

  make[1]: Entering directory '/tmp/build/libosmo-sccp-0.0.6.3.24-758d/_build'
  echo 0.0.6.3.24-758d > ../.version-t && mv ../.version-t ../.version
  /bin/bash: ../.version-t: Permission denied
  Makefile:807: recipe for target '../.version' failed
---
 Makefile.am | 2 ++
 1 file changed, 2 insertions(+)
diff mbox

Patch

diff --git a/Makefile.am b/Makefile.am
index e300b31..534fdc2 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -6,6 +6,8 @@  SUBDIRS = include src tests
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = libosmo-sccp.pc libosmo-mtp.pc
 
+EXTRA_DIST = .version
+
 BUILT_SOURCES = $(top_srcdir)/.version
 $(top_srcdir)/.version:
 	echo $(VERSION) > $@-t && mv $@-t $@