diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2009-05-24 13:12:28 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2009-05-24 13:12:28 +0000 |
commit | d2d96b1ed24a85ee8f5414af08e5402d08eefa0b (patch) | |
tree | efd64878eb3f13e5afe3e8143d73ee27ab194a19 /Makefile.am | |
parent | 2ff17aa31e87d036c76b50b99e498a7bc22c43fb (diff) | |
download | fetchmail-d2d96b1ed24a85ee8f5414af08e5402d08eefa0b.tar.gz fetchmail-d2d96b1ed24a85ee8f5414af08e5402d08eefa0b.tar.bz2 fetchmail-d2d96b1ed24a85ee8f5414af08e5402d08eefa0b.zip |
Make fetchmailconf script executable.
svn path=/branches/BRANCH_6-3/; revision=5312
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 71ef0a5a..a3bbaadc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -179,7 +179,7 @@ EXTRA_DIST+= $(DISTDOCS) fetchmail.spec $(distdirs) ucs/README.svn \ Doxyfile fetchmailconf: - ( echo '#! /bin/sh' && echo 'exec @PYTHON@ @pythondir@/fetchmailconf.py "$$@"' ) >$@ || { rm -f $@ ; exit 1; } + ( echo '#! /bin/sh' && echo 'exec @PYTHON@ @pythondir@/fetchmailconf.py "$$@"' ) >$@ && chmod +x $@ || { rm -f $@ ; exit 1; } FAQ: fetchmail-FAQ.html $(srcdir)/dist-tools/html2txt AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/fetchmail-FAQ.html >$@ || { rm -f $@ ; exit 1 ; } |