diff options
author | Martin Baulig <martin@src.gnome.org> | 1998-09-15 16:16:11 +0800 |
---|---|---|
committer | Martin Baulig <martin@src.gnome.org> | 1998-09-15 16:16:11 +0800 |
commit | 99fcfec213fc7d7f6ee57a16c50ec377b3fd8a9c (patch) | |
tree | fe0d1d47c30a40042e768b8031bca2e5a31255dc /calendar/gui | |
parent | 70fa0cb32695a4e52637d3d2071ae3f638157c41 (diff) | |
download | gsoc2013-evolution-99fcfec213fc7d7f6ee57a16c50ec377b3fd8a9c.tar gsoc2013-evolution-99fcfec213fc7d7f6ee57a16c50ec377b3fd8a9c.tar.gz gsoc2013-evolution-99fcfec213fc7d7f6ee57a16c50ec377b3fd8a9c.tar.bz2 gsoc2013-evolution-99fcfec213fc7d7f6ee57a16c50ec377b3fd8a9c.tar.lz gsoc2013-evolution-99fcfec213fc7d7f6ee57a16c50ec377b3fd8a9c.tar.xz gsoc2013-evolution-99fcfec213fc7d7f6ee57a16c50ec377b3fd8a9c.tar.zst gsoc2013-evolution-99fcfec213fc7d7f6ee57a16c50ec377b3fd8a9c.zip |
Use `rm -f ... ; $(LN_S) ...' instead of `ln -sf'.
svn path=/trunk/; revision=378
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/Makefile.am b/calendar/gui/Makefile.am index 9e4163c932..3f1cb80632 100644 --- a/calendar/gui/Makefile.am +++ b/calendar/gui/Makefile.am @@ -78,4 +78,4 @@ install-data-local: $(mkinstalldirs) $(help_base)/C $(INSTALL_DATA) $(srcdir)/topic.dat $(help_base)/C/topic.dat $(INSTALL_DATA) $(srcdir)/gnome-cal.html $(help_base)/C/gnome-cal.html - cd $(help_base)/C; ln -sf gnome-cal.html index.html + cd $(help_base)/C; rm -f index.html ; $(LN_S) gnome-cal.html index.html |