diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2011-04-29 00:22:50 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2011-04-29 00:22:50 +0200 |
commit | 358a8083e9801482b4550e7e660f385545e6029c (patch) | |
tree | 1cf1e6f9dc8585964b8e138ceeb96520f0e260ed | |
parent | ac5a23769a5b07a24fde7b7cd18940c27c6dfd6a (diff) | |
download | fetchmail-358a8083e9801482b4550e7e660f385545e6029c.tar.gz fetchmail-358a8083e9801482b4550e7e660f385545e6029c.tar.bz2 fetchmail-358a8083e9801482b4550e7e660f385545e6029c.zip |
Build fix for systems that don't have perl in /usr/bin (DragonFly).
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 3947e84e..1ac6ef61 100644 --- a/Makefile.am +++ b/Makefile.am @@ -218,7 +218,7 @@ TODO: todo.html $(srcdir)/dist-tools/html2txt AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/todo.html >$@ || { rm -f $@ ; exit 1 ; } fetchmail-man.html: fetchmail.man $(srcdir)/dist-tools/manServer.pl - env - "PATH=$$PATH" $(srcdir)/dist-tools/manServer.pl $(srcdir)/fetchmail.man >$@ \ + env - "PATH=$$PATH" perl -T $(srcdir)/dist-tools/manServer.pl $(srcdir)/fetchmail.man >$@ \ || { rm -f $@ ; exit 1 ; } dist-hook: |