device supports it. Mainly for speeding up xfs_repair as
libxfs does its own internal metadata buffering now.
- Fix warnings from mkfs.xfs on ramdisk devices.
+ - Fix issues with symbolic link handling in Makefiles.
xfsprogs-2.8.10 (02 August 2006)
- Fix v2 directory rebuilds in phase6 of xfs_repair.
SOURCE_MAKERULE = \
@test -z "$$DIR" && DIR="."; \
for f in $(SRCFILES) ""; do \
- if test ! -z "$$f"; then $(ECHO) $$DIR/$$f; fi;\
+ test -z "$$f" && break; \
+ test -L "$$f" || $(ECHO) $$DIR/$$f; \
done; \
- for d in `echo $(SUBDIRS)` ; do \
- if test -d "$$d" -a ! -z "$$d"; then \
+ for d in `echo $(SUBDIRS)` ""; do \
+ test -z "$$d" && break; \
+ if test -d "$$d"; then \
$(MAKEF) DIR=$$DIR/$$d -C $$d $@ || exit $$?; \
fi; \
done