diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-02-20 02:13:52 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-02-20 02:13:52 +0800 |
commit | dfe6ecc829d4170b1523465b68fa5f1a2c7108dc (patch) | |
tree | 5f33cb8b73baefe8d38c88ee6738d4e80db919a6 /calendar/gui | |
parent | da47a92f83c97aba001150736c375be3111e5b8b (diff) | |
download | gsoc2013-evolution-dfe6ecc829d4170b1523465b68fa5f1a2c7108dc.tar gsoc2013-evolution-dfe6ecc829d4170b1523465b68fa5f1a2c7108dc.tar.gz gsoc2013-evolution-dfe6ecc829d4170b1523465b68fa5f1a2c7108dc.tar.bz2 gsoc2013-evolution-dfe6ecc829d4170b1523465b68fa5f1a2c7108dc.tar.lz gsoc2013-evolution-dfe6ecc829d4170b1523465b68fa5f1a2c7108dc.tar.xz gsoc2013-evolution-dfe6ecc829d4170b1523465b68fa5f1a2c7108dc.tar.zst gsoc2013-evolution-dfe6ecc829d4170b1523465b68fa5f1a2c7108dc.zip |
Split $(CORBA_GENERATED_H) rule from the $(CORBA_GENERATED_C) rule to that
* pcs/Makefile.am: Split $(CORBA_GENERATED_H) rule from the
$(CORBA_GENERATED_C) rule to that it autogens properly when using
parallel makes.
* cal-client/Makefile.am: Likewise.
* gui/gnome-cal.c (gnome_calendar_setup_view_menus): Fix path to
the calendar's GAL Views directory. [Pointed out by Grzegorz
Goawski.]
svn path=/trunk/; revision=19947
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/gnome-cal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index 33b5fc8849..5c272c5f74 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -1340,9 +1340,9 @@ gnome_calendar_setup_view_menus (GnomeCalendar *gcal, BonoboUIComponent *uic) gal_view_collection_set_title (collection, _("Calendar")); - path = gnome_util_prepend_user_home ("/evolution/views/calendar/"); + path = gnome_util_prepend_user_home ("/evolution/views/calendar/"); gal_view_collection_set_storage_directories (collection, - EVOLUTION_GALVIEWSDIR "/evolution/views/calendar/", + EVOLUTION_GALVIEWSDIR "/calendar/", path); g_free (path); |