From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8171 invoked by alias); 9 Sep 2012 15:02:31 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 30663 Received: (qmail 9199 invoked from network); 9 Sep 2012 15:02:29 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 Received-SPF: pass (ns1.primenet.com.au: SPF record at me.com designates 17.158.232.39 as permitted sender) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.7.7855,1.0.431,0.0.0000 definitions=2012-09-09_05:2012-09-06,2012-09-09,1970-01-01 signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 ipscore=0 suspectscore=0 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=6.0.2-1203120001 definitions=main-1209090107 Subject: Re: Zsh on Precise Pangolin; META-FAQ does not build properly under recent yodl From: =?iso-2022-jp?B?GyRCQmxLXBsoQiAbJEI9XzBsGyhC?= In-reply-to: Date: Sun, 09 Sep 2012 23:02:21 +0900 Message-id: References: To: "zsh-workers@zsh.org" X-Mailer: Apple Mail (2.1486) >The newline in the definition of sect() from META-FAQ.yo is >being lost for some reason. Passing an option '-k' to yodl seems to work (tested with yodl 2.13.2 and 3.00.0). zsh manpages generated by with and without -k seem to be identical. man yodl suggests that the option -k is new to yodl-2 to make it compatible with yodl-1. If this is the case, then the following patch may work: Index: configure.ac =================================================================== RCS file: /cvsroot/zsh/zsh/configure.ac,v retrieving revision 1.141 diff -u -r1.141 configure.ac --- configure.ac 17 Aug 2012 11:12:34 -0000 1.141 +++ configure.ac 9 Sep 2012 13:47:49 -0000 @@ -565,7 +565,8 @@ YODL_OPTIONS='' if test "x$ac_cv_prog_YODL" = xyodl; then case `yodl --version` in - *"version 3."*) YODL_OPTIONS='-L' ;; + *"version 2."*) YODL_OPTIONS='-k' ;; + *"version 3."*) YODL_OPTIONS='-k -L' ;; esac fi AC_SUBST(YODL_OPTIONS)