Use rm -f ... ; $(LN_S) ...' instead of ln -sf'.

svn path=/trunk/; revision=378
This commit is contained in:
Martin Baulig
1998-09-15 08:16:11 +00:00
parent 70fa0cb326
commit 99fcfec213
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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