diff options
author | Petr Spacek <pspacek@redhat.com> | 2016-11-22 17:00:04 +0100 |
---|---|---|
committer | Martin Basti <mbasti@redhat.com> | 2016-11-29 15:28:24 +0100 |
commit | 6fcfe689f47a02df023de69f62c889d9b4dc26fe (patch) | |
tree | e5b143f987f563797e1e86abfe5892c74ea73576 /ipapython/Makefile.am | |
parent | 89739a6c910461a3cac3abc1bf2ff162c7c5bc82 (diff) | |
download | freeipa-6fcfe689f47a02df023de69f62c889d9b4dc26fe.tar.gz freeipa-6fcfe689f47a02df023de69f62c889d9b4dc26fe.tar.xz freeipa-6fcfe689f47a02df023de69f62c889d9b4dc26fe.zip |
Build: properly integrate version.py into build system
AC_CONFIG_FILES in configure.ac works well only with Makefiles.
Other files have to be handled by Makefile.am so depedencies
are tracked properly.
https://fedorahosted.org/freeipa/ticket/6498
Reviewed-By: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'ipapython/Makefile.am')
-rw-r--r-- | ipapython/Makefile.am | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ipapython/Makefile.am b/ipapython/Makefile.am index 8be72b25d..bf2538a5b 100644 --- a/ipapython/Makefile.am +++ b/ipapython/Makefile.am @@ -1 +1,14 @@ include $(top_srcdir)/Makefile.python.am + +EXTRA_DIST = version.py.in + +all-local: version.py +dist-hook: version.py + +version.py: version.py.in $(top_builddir)/$(CONFIG_STATUS) + $(AM_V_GEN)sed \ + -e 's|@API_VERSION[@]|$(API_VERSION)|g' \ + -e 's|@NUM_VERSION[@]|$(NUM_VERSION)|g' \ + -e 's|@VERSION[@]|$(VERSION)|g' \ + -e 's|@VENDOR_SUFFIX[@]|$(VENDOR_SUFFIX)|g' \ + $< > $@ |