From owner-freebsd-questions Tue May 27 09:55:38 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA21796 for questions-outgoing; Tue, 27 May 1997 09:55:38 -0700 (PDT) Received: from pat.idt.unit.no (0@pat.idt.unit.no [129.241.103.5]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id JAA21785 for ; Tue, 27 May 1997 09:55:32 -0700 (PDT) Received: from idt.unit.no (tegge@ikke.idi.ntnu.no [129.241.111.65]) by pat.idt.unit.no (8.8.5/8.8.5) with ESMTP id SAA18939; Tue, 27 May 1997 18:55:05 +0200 (MET DST) Message-Id: <199705271655.SAA18939@pat.idt.unit.no> To: ATuretta@stylo.it Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Make world halts on sendmail config file. In-Reply-To: Your message of "Tue, 27 May 1997 17:32:33 +0200" References: <31EBCC36B676D01197E400801E032495021F4F@STYLOSERVER> X-Mailer: Mew version 1.06 on Emacs 19.34.1 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Date: Tue, 27 May 1997 18:55:04 +0200 From: Tor Egge Sender: owner-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Can someone help me troubleshooting this? > make world halts after building sendmail, while expanding its > configuration files. > > --------------- quoting from redirected output > ===> usr.sbin/sendmail/cf/cf > rm -f freefall.cf > (cd /proxy/src/usr.sbin/sendmail/cf/cf && m4 ../m4/cf.m4 freefall.mc) > > freefall.cf > m4: eval: major botch. > --------------- end quoting > > The tree is RELENG_2_2 as of yesterday (updated with cvsup), freefall.mc > is stamped with: > > VERSIONID(`@(#)freefall.mc $Revision: 1.8.2.4 $') > > these are the last lines written to freefall.cf: > > ###################################################################### > ###################################################################### > ##### > ##### SENDMAIL CONFIGURATION FILE > ##### > ##### built by root@unix.stylo.it on Tue May 27 17:12:43 MET DST 1997 > ##### in /proxy/src/usr.sbin/sendmail/cf/cf > ##### using ../ as configuration include directory > > What can I do? unix is a predefined macro in m4. Change hostname, or apply the following diff: ------ Index: makeinfo.sh =================================================================== RCS file: /home/ncvs/src/usr.sbin/sendmail/cf/sh/makeinfo.sh,v retrieving revision 1.2 diff -u -r1.2 makeinfo.sh --- makeinfo.sh 1996/11/26 03:41:39 1.2 +++ makeinfo.sh 1997/05/27 16:49:31 @@ -76,4 +76,4 @@ echo '#####' built by $user@$host on `LC_TIME=C date` echo '#####' in `pwd` | sed 's/\/tmp_mnt//' echo '#####' using $1 as configuration include directory | sed 's/\/tmp_mnt//' -echo "define(\`__HOST__', $host)dnl" +echo "define(\`__HOST__', \`\`$host'')dnl" ------ - Tor Egge