diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-04-19 12:21:48 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-04-19 12:21:48 +0800 |
commit | e8f404212192537022a5c8c8392e1aaeb446d864 (patch) | |
tree | 37289e4e6fb1a5778c5048bd2b583ec09795a411 | |
parent | 80b463a043ce176168c17d3a82db01941feb4b63 (diff) | |
download | gsoc2013-evolution-e8f404212192537022a5c8c8392e1aaeb446d864.tar gsoc2013-evolution-e8f404212192537022a5c8c8392e1aaeb446d864.tar.gz gsoc2013-evolution-e8f404212192537022a5c8c8392e1aaeb446d864.tar.bz2 gsoc2013-evolution-e8f404212192537022a5c8c8392e1aaeb446d864.tar.lz gsoc2013-evolution-e8f404212192537022a5c8c8392e1aaeb446d864.tar.xz gsoc2013-evolution-e8f404212192537022a5c8c8392e1aaeb446d864.tar.zst gsoc2013-evolution-e8f404212192537022a5c8c8392e1aaeb446d864.zip |
Fix include path.
2000-04-18 Federico Mena Quintero <federico@helixcode.com>
* cal-util/Makefile.am (INCLUDES): Fix include path.
svn path=/trunk/; revision=2491
-rw-r--r-- | calendar/ChangeLog | 4 | ||||
-rw-r--r-- | calendar/cal-util/Makefile.am | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index ee1f7f80d9..d2e7395d38 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,7 @@ +2000-04-18 Federico Mena Quintero <federico@helixcode.com> + + * cal-util/Makefile.am (INCLUDES): Fix include path. + 2000-04-16 Federico Mena Quintero <federico@helixcode.com> * pcs/cal-factory.h (CalFactoryClass): We have a new diff --git a/calendar/cal-util/Makefile.am b/calendar/cal-util/Makefile.am index 248e5373e5..250cbf95c9 100644 --- a/calendar/cal-util/Makefile.am +++ b/calendar/cal-util/Makefile.am @@ -1,12 +1,11 @@ INCLUDES = \ -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \ -DG_LOG_DOMAIN=\"cal-util\" \ - -I$(srcdir) -I$(top_srcdir) \ - -I$(srcdir)/calendar \ + -I$(top_srcdir) \ + -I$(top_srcdir)/calendar \ -I. \ -I.. \ -I$(top_builddir) \ - -I$(includedir) \ $(GNOME_INCLUDEDIR) lib_LTLIBRARIES = libcal-util.la |