From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8081 invoked from network); 4 Nov 1999 16:37:19 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 4 Nov 1999 16:37:19 -0000 Received: (qmail 29704 invoked by alias); 4 Nov 1999 16:37:14 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 8543 Received: (qmail 29697 invoked from network); 4 Nov 1999 16:37:14 -0000 Subject: Re: PATCH: 3.1.6-bart-8: bad configure test, misc. In-Reply-To: <991104162933.ZM26120@candle.brasslantern.com> from Bart Schaefer at "Nov 4, 1999 4:29:33 pm" To: schaefer@candle.brasslantern.com (Bart Schaefer) Date: Thu, 4 Nov 1999 16:37:05 +0000 (GMT) Cc: zsh-workers@sunsite.auc.dk X-Mailer: ELM [version 2.4ME+ PL48 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Message-Id: From: Zefram Bart Schaefer wrote: >-AC_CHECK_PROGS([YODL], [yodl], [:]) >+AC_CHECK_PROGS([YODL], [yodl], [exit 0; yodl]) AC_CHECK_PROGS([YODL], [yodl], [: yodl]) would be better -- it preserves the semantics if $(YODL) is used in a compound command, which is what the original tried to do. -zefram