Make bombs out with: mkdir: cannot create directory `build/freenet/node/http/templates': No such file or directory
That's because build/freenet/node/http does not exist yet. Here's the "obviously correct" fix:
Index: Makefile =================================================================== RCS file: /cvsroot/freenet/freenet/Makefile,v retrieving revision 1.40 diff -u -r1.40 Makefile --- Makefile 31 Aug 2002 20:09:32 -0000 1.40 +++ Makefile 1 Sep 2002 19:47:45 -0000 @@ -171,7 +171,7 @@ fproxy:: $(FPROXY) $(JAVAC) $(JAVAC_OPTS) $(addprefix src/,$^) - test -d build/freenet/node/http/templates || mkdir build/freenet/node/http/templates + test -d build/freenet/node/http/templates || mkdir -p build/freenet/node/http/templates cp -r src/freenet/node/http/templates build/freenet/node/http/ tools:: $(TOOLS)
-- Robbe
signature.ng
Description: PGP signature
