Hi,
On Wed, Apr 06, 2011 at 06:26:15PM +0100, Michael Walker wrote:
> > Missing Copyright/License header.
>
> Ok, I wasn't entirely sure what to put as the xmlfs code I started
> with had HurdFR stuff, so I decided to leave it until I learned what
> the copyright situation for the xmlfs code is.
>> all: $(OBJS)
>> - $(CC) -o $(BINARY) $(OBJS) $(LDFLAGS)
>> + @$(CC) -o $(BINARY) $(OBJS) $(LDFLAGS)
>>
>> .c.o:
>> - $(COMPILE) -c $<
>> + @$(COMPILE) -c $<
>>
>> clean:
>> - rm -f *.o core *.obj *~ $(BINARY)
>> + @rm -f *.o core *.obj *~ $(BINARY) fs_notify.c
>
> This
Hi,
On Mon, Apr 04, 2011 at 01:37:12PM +0100, Michael Walker wrote:
> The below patch monitors the backing store for changes (if it's a
> separate file rather than the underlying node) and updates the
> presented directory hierarchy when a change is detected.
I'm not familiar with the notificati
The below patch monitors the backing store for changes (if it's a
separate file rather than the underlying node) and updates the
presented directory hierarchy when a change is detected.
diff --git a/Makefile b/Makefile
index d646475..747739e 100644
--- a/Makefile
+++ b/Makefile
@@ -3,15 +3,15 @@ C