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.

--- config/gen/makefiles/root.in_old    Tue Jun 04 15:45:49 2002
+++ config/gen/makefiles/root.in        Tue Jun 04 15:42:42 2002
@@ -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