diff options
author | Peter Williams <peterw@ximian.com> | 2001-07-12 22:21:27 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2001-07-12 22:21:27 +0800 |
commit | de6d478888e683693556b4891d10da2101947dfa (patch) | |
tree | ba2a15f2f978968621ea5d14ec66899deb13e940 | |
parent | a2b6de72927d6648e527560ebb9dbf284400b544 (diff) | |
download | gsoc2013-evolution-de6d478888e683693556b4891d10da2101947dfa.tar gsoc2013-evolution-de6d478888e683693556b4891d10da2101947dfa.tar.gz gsoc2013-evolution-de6d478888e683693556b4891d10da2101947dfa.tar.bz2 gsoc2013-evolution-de6d478888e683693556b4891d10da2101947dfa.tar.lz gsoc2013-evolution-de6d478888e683693556b4891d10da2101947dfa.tar.xz gsoc2013-evolution-de6d478888e683693556b4891d10da2101947dfa.tar.zst gsoc2013-evolution-de6d478888e683693556b4891d10da2101947dfa.zip |
Add the COMBINEDHEADERS here and remove the EXTRA_DIST. This fixes
2001-07-10 Peter Williams <peterw@ximian.com>
* src/libicalss/Makefile.am (libicalss_la_SOURCES): Add the
COMBINEDHEADERS here and remove the EXTRA_DIST. This fixes distcheck.
We can't just put CONBINEDHEADERS at the bottom of _SOURCES because
of the $(srcdir).
svn path=/trunk/; revision=11040
-rw-r--r-- | libical/ChangeLog | 7 | ||||
-rw-r--r-- | libical/src/libicalss/Makefile.am | 14 |
2 files changed, 17 insertions, 4 deletions
diff --git a/libical/ChangeLog b/libical/ChangeLog index c3ed28027e..b43f41b042 100644 --- a/libical/ChangeLog +++ b/libical/ChangeLog @@ -1,3 +1,10 @@ +2001-07-10 Peter Williams <peterw@ximian.com> + + * src/libicalss/Makefile.am (libicalss_la_SOURCES): Add the + COMBINEDHEADERS here and remove the EXTRA_DIST. This fixes distcheck. + We can't just put CONBINEDHEADERS at the bottom of _SOURCES because + of the $(srcdir). + 2001-07-11 Damon Chaplin <damon@ximian.com> * src/libical/icaltimezone.c: only create the timezones array when we diff --git a/libical/src/libicalss/Makefile.am b/libical/src/libicalss/Makefile.am index 8ab867a206..9e11bc3fc8 100644 --- a/libical/src/libicalss/Makefile.am +++ b/libical/src/libicalss/Makefile.am @@ -15,24 +15,32 @@ INCLUDES = \ libicalss_la_LDFLAGS = -version-info 0:0:0 libicalss_la_SOURCES = \ + icalcalendar.h \ icalclassify.c \ + icalclassify.h \ icalgauge.c \ + icalgauge.h \ icalgaugeimpl.h \ - icaldirset.c \ + icaldirset.h \ icaldirsetimpl.h \ icalfileset.c \ + icalfileset.h \ icalfilesetimpl.h \ icalset.c \ + icalset.h \ icalsslexer.l \ icalssyacc.h \ icalssyacc.y \ icalspanlist.c \ + icalspanlist.h \ icalmessage.c \ + icalmessage.h \ icalcstpclient.c \ icalcstpclient.h \ icalcstpserver.c \ icalcstpserver.h \ - icalcstp.c + icalcstp.c \ + icalcstp.h libicalssincludedir = $(includedir) @@ -59,5 +67,3 @@ libicalssinclude_HEADERS = icalss.h CONFIG_CLEAN_FILES = y.output -EXTRA_DIST = \ - $(COMBINEDHEADERS) \ |