summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS5
-rw-r--r--src/Makefile.am4
2 files changed, 8 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index be9083b..0c434be 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,11 @@
telepathy-python 0.15.20 (UNRELEASED)
=====================================
+Fixes:
+
+ * fd.o#32526: telepathy-python fails to install with new autotools by
+ installing _generated/errors.py twice. (Reimundo Heluani)
+
telepathy-python 0.15.19 (2010-12-03)
=====================================
diff --git a/src/Makefile.am b/src/Makefile.am
index 135f2f0..ede1fc3 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -13,10 +13,12 @@ telepathy_PYTHON = \
spec_dir = $(top_srcdir)/spec
spec_files := $(patsubst $(spec_dir)%.xml,_generated%.py,$(wildcard $(spec_dir)/*.xml))
+# We leave _generated/errors.py out of here because there exists a
+# spec/errors.xml file, so that means there'll be a
+# _generated/errors.py in $(spec_files). See fd.o#32526
BUILT_SOURCES = \
_generated/interfaces.py \
_generated/constants.py \
- _generated/errors.py \
_generated/__init__.py \
$(spec_files)