From xemacs-m  Sun Sep 14 15:14:32 1997
Received: from belle.matt.cs.purdue.edu (simmonmt@chw-il5-60.ix.netcom.com [198.211.138.124])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id PAA28588
	for <xemacs-beta@xemacs.org>; Sun, 14 Sep 1997 15:14:30 -0500 (CDT)
Received: (from simmonmt@localhost)
	by belle.matt.cs.purdue.edu (8.8.7/8.8.7) id PAA20123;
	Sun, 14 Sep 1997 15:14:30 -0500 (CDT)
To: xemacs-beta@xemacs.org
Subject: Info build failure (20.3-b20) with Solaris make
Reply-To: simmonmt@acm.org
Mime-Version: 1.0 (generated by tm-edit 7.106)
Content-Type: multipart/mixed;
 boundary="Multipart_Sun_Sep_14_15:14:29_1997-1"
Content-Transfer-Encoding: 7bit
From: Matt Simmons <simmonmt@acm.org>
Date: 14 Sep 1997 15:14:29 -0500
Message-ID: <yfqsov7wt3u.fsf@acm.org>
Lines: 41
X-Mailer: Quassia Gnus v0.2/XEmacs 20.2

--Multipart_Sun_Sep_14_15:14:29_1997-1
Content-Type: text/plain; charset=US-ASCII

When rebuilding the info tree (makeinfo 1.68) with the standard
Solaris 2.5.1 make, the MAKEINFO definition doesn't get passed to the
makes in the subdirectories.  The following fixes it, but I don't know 
if this kind of explicit parameter passing is thought of as a Bad
Thing or not.

Matt

-- 
     Matt Simmons  -  simmonmt@acm.org  -  http://www.netcom.com/~simmonmt
     Isn't is it a bit unnerving that doctors call what they do "practice"?

--Multipart_Sun_Sep_14_15:14:29_1997-1
Content-Type: application/octet-stream
Content-Disposition: attachment; filename="patch"
Content-Transfer-Encoding: 7bit

*** xemacs-20.3-b20/man/Makefile.mts	Sun Sep 14 15:07:42 1997
--- xemacs-20.3-b20/man/Makefile	Sun Sep 14 15:11:05 1997
***************
*** 51,57 ****
  
  all  : info
  info : $(info) $(special)
! 	-for d in $(SUBDIR) ; do (cd $${d} && $(MAKE) $(MFLAGS) $@) ; done
  
  xemacs: FORCE
  	-cd $@ && $(MAKE) $(MFLAGS)
--- 51,57 ----
  
  all  : info
  info : $(info) $(special)
! 	-for d in $(SUBDIR) ; do (cd $${d} && $(MAKE) $(MFLAGS) MAKEINFO=$(MAKEINFO) $@) ; done
  
  xemacs: FORCE
  	-cd $@ && $(MAKE) $(MFLAGS)

--Multipart_Sun_Sep_14_15:14:29_1997-1--

