search for: obj_nodes

Displaying 4 results from an estimated 4 matches for "obj_nodes".

2003 Nov 29
1
[PATCH] ash not make -j safe, make spotless updates
some files depend on nodes.h, but there is no dependency for that fact. olaf@mandarine:~/klibc-0.87> grep -Er 'include.*nodes.h' ash/ | sed 's-^[^/]\+/\([^.]*\).*-\1.o-' | xargs echo OBJ_NODES = OBJ_NODES = cd.o eval.o exec.o expand.o jobs.o main.o nodes.o options.o parser.o redir.o show.o trap.o var.o make spotless doesnt work reliable, the patch adds a few more targets. Is there a good reason to build ash.shared in klibc? diff -p -purNx linux klibc-0.87.orig/ash/Makefile klibc-0.87...
2005 Feb 07
2
tiny patch for klibc 0.198
...-e s/i.86/i386/ -e s/sun4u/sparc64/ -e s/arm.*/arm/ -e s/sa110/arm/) CROSS = diff -ur old/klibc-0.198/ash/Makefile klibc-0.198/ash/Makefile --- old/klibc-0.198/ash/Makefile 2005-01-27 22:21:29.000000000 +0100 +++ klibc-0.198/ash/Makefile 2005-02-06 15:56:36.478233705 +0100 @@ -111,8 +111,7 @@ $(OBJ_NODES): nodes.h $(OBJ_SYNTAX): syntax.h -nodes.c nodes.h: mknodes.sh nodetypes nodes.c.pat nodes -nodes: +nodes.c nodes.h nodes: mknodes.sh nodetypes nodes.c.pat sh mknodes.sh nodetypes nodes.c.pat . signames.c: mksignames diff -ur old/klibc-0.198/utils/Makefile klibc-0.198/utils/Makefile --- old/k...
2004 Jan 27
1
[PATCH] ash make deps
a make -j may fail without it. --- klibc/ash/Makefile.orig 2004-01-27 13:43:02.000000000 +0000 +++ klibc/ash/Makefile 2004-01-27 13:44:34.000000000 +0000 @@ -13,6 +13,7 @@ OBJ2 = builtins.o cd.o dirent.o bltin/ec OBJS = $(OBJ1) $(OBJ2) OBJ_NODES = cd.o eval.o exec.o expand.o jobs.o main.o nodes.o options.o parser.o redir.o show.o trap.o var.o +OBJ_BUILTINS = b.o eval.o exec.o SRCROOT = .. @@ -68,6 +69,8 @@ mkinit: mkinit.c $(OBJ_NODES): nodes.h +$(OBJ_BUILTINS): builtins.h + nodes.h: mknodes nodetypes nodes.c.pat ./mknodes no...
2006 Jul 24
15
XML Question
I''ve got an XML file which is pretty well structured. I need to retrieve specific elements from that file to fill out empty HTML elements on a page. I think what I need is xPath? Or - is that overkill? Is there some easier way to locate an XML element? What I have in mind is pulling the XML file using Ajax, then xPath to get the bits I need. Am I on the right path and does