diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-02-07 16:34:35 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-02-07 16:34:35 +0000 |
commit | 0f91f0a71f073b5689ace6504cc62162e234ac79 (patch) | |
tree | f345b67f6359f82362f5784acd91ded7f6c8012a /Makefile.in | |
parent | d0c2c187633fa906eee672c21f46a2ac68148d15 (diff) | |
download | fetchmail-0f91f0a71f073b5689ace6504cc62162e234ac79.tar.gz fetchmail-0f91f0a71f073b5689ace6504cc62162e234ac79.tar.bz2 fetchmail-0f91f0a71f073b5689ace6504cc62162e234ac79.zip |
ln -s -f doesn't work right under Solaris.
svn path=/trunk/; revision=2375
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index f87ff300..d8becfe0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -147,7 +147,8 @@ install: $(INSTALL_PROGRAM) ${srcdir}/fetchmailconf $(bindir)/fetchmailconf @echo "Installing manual page..." $(INSTALL_DATA) $(srcdir)/fetchmail.man $(mandir)/fetchmail.$(manext) - ln -f -s $(mandir)/fetchmail.$(manext) $(mandir)/fetchmailconf.$(manext) + rm -f $(mandir)/fetchmailconf.$(manext) + ln -s $(mandir)/fetchmail.$(manext) $(mandir)/fetchmailconf.$(manext) @echo "Installing language catalogs..." @POMAKE@ install |