diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-06-06 13:56:39 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-06-06 13:56:39 +0000 |
commit | 25e9d3329b624a4c00b35a7620fae8e5700e0a31 (patch) | |
tree | dc55cb84ed543db530e122be7a75482f8ffbbbc8 /Makefile.in | |
parent | 1588f533d3ff8ea52ca734d53dce62ea004dca71 (diff) | |
download | fetchmail-25e9d3329b624a4c00b35a7620fae8e5700e0a31.tar.gz fetchmail-25e9d3329b624a4c00b35a7620fae8e5700e0a31.tar.bz2 fetchmail-25e9d3329b624a4c00b35a7620fae8e5700e0a31.zip |
Solaris 2.5.1 doesn't like ln -sf
svn path=/trunk/; revision=1920
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index e684fed3..1173a8bc 100644 --- a/Makefile.in +++ b/Makefile.in @@ -137,7 +137,7 @@ install: $(INSTALL_PROGRAM) ${srcdir}/fetchmailconf $(bindir)/fetchmailconf @echo "Installing manual page..." $(INSTALL_DATA) $(srcdir)/fetchmail.man $(mandir)/fetchmail.$(manext) - ln -sf $(mandir)/fetchmail.$(manext) $(mandir)/fetchmailconf.$(manext) + ln -f -s $(mandir)/fetchmail.$(manext) $(mandir)/fetchmailconf.$(manext) uninstall: rm -f $(bindir)/fetchmail $(bindir)/fetchmailconf |