docs/Makefile fails unless the 'ops' directory already exists.  Since an
empty 'ops' directory isn't listed in MANIFEST, we can't assume it will
exist.  This patch creates it if it doesn't already exist.

diff -r -u parrot-orig/config/gen/makefiles/docs.in 
parrot-andy/config/gen/makefiles/docs.in
--- parrot-orig/config/gen/makefiles/docs.in    Wed Jul 23 11:37:01 2003
+++ parrot-andy/config/gen/makefiles/docs.in    Fri Aug 29 12:49:48 2003
@@ -1,9 +1,15 @@
 PERL = ${perl}
 RM_F = ${rm_f}

+# Make directory; do not die if dir exists.
+MKDIR = $(PERL) -e ${PQ}-d or mkdir $$_,0777 or die foreach @ARGV${PQ}
+
 POD = ${pod}

-all: packfile-c.pod packfile-perl.pod $(POD)
+all: doc-prep packfile-c.pod packfile-perl.pod $(POD)
+
+doc-prep:
+       $(MKDIR) ops

 packfile-c.pod: ../packfile.c
        perldoc -u ../packfile.c > packfile-c.pod

-- 
    Andy Dougherty              [EMAIL PROTECTED]

Reply via email to