>From 3f4b07025dada8ebf69f5593de22ad3a291528e0 Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Fri, 21 Oct 2011 10:32:11 +0000 Subject: [PATCH 3/3] autotools: fixed out-of-tree compilation The commit which turned icalerror.h into a generated file broke out-of-tree compilation because the Makefile.am still expected the file in the top_src dir, where it is only generated if compiling there. --- libical/src/libical/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libical/src/libical/Makefile.am b/libical/src/libical/Makefile.am index 8db2d80..231c6cd 100644 --- a/libical/src/libical/Makefile.am +++ b/libical/src/libical/Makefile.am @@ -179,7 +179,7 @@ COMBINEDHEADERS = \ $(top_srcdir)/src/libical/icaltimezone.h \ $(top_srcdir)/src/libical/icalparser.h \ $(top_srcdir)/src/libical/icalmemory.h \ - $(top_srcdir)/src/libical/icalerror.h \ + icalerror.h \ $(top_srcdir)/src/libical/icalrestriction.h \ $(top_srcdir)/src/libical/sspm.h \ $(top_srcdir)/src/libical/icalmime.h \ -- 1.7.2.5