cvsuser     02/06/06 07:57:47

  Modified:    config/gen/makefiles root.in
  Log:
  From: "Clinton A. Pierce" <[EMAIL PROTECTED]>
  To: [EMAIL PROTECTED]
  Subject: PATCH for Win32 lib/Parrot makefile woes
  Date: Tue, 04 Jun 2002 19:52:51 -0400
  X-Spam-Level:
  
  Fixes the problem where the toplevel makefile can't descend into lib/Parrot
  to do the build necessary for PackFile and friends.  Also I think the
  single cd .. may potentially be a bug for other platforms as well.
  
  Apply this and re-run Configure.pl and all is well.
  
  Revision  Changes    Path
  1.6       +1 -1      parrot/config/gen/makefiles/root.in
  
  Index: root.in
  ===================================================================
  RCS file: /cvs/public/parrot/config/gen/makefiles/root.in,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -w -r1.5 -r1.6
  --- root.in   1 Jun 2002 03:54:18 -0000       1.5
  +++ root.in   6 Jun 2002 14:57:47 -0000       1.6
  @@ -408,7 +408,7 @@
   #newasm : $(TEST_PROG) lib/Parrot/.dummy
   
   lib/Parrot/.dummy :
  -     cd lib/Parrot && $(PERL) Makefile.PL && $(MAKE) && cd ..
  +     cd lib && cd Parrot && $(PERL) Makefile.PL && $(MAKE) && cd .. && cd ..
   
   docs/.dummy :
        cd docs && $(MAKE) && cd ..
  
  
  


Reply via email to