Hi,
lib/symbol/Makefile has:
symb:
$(MKDIR) $(ETC)/symbol
find ./symbol -type f | grep -v CVS | xargs tar chBf - |(cd $(ETC); tar xBf -)
this seems very circuitous to me, should it be:
symb:
$(MKDIR) $(ETC)/symbol
$(INSTALL) -m 644 symbol/* $(ETC)/symbol/
(will "install" include directories?)
??
Hamish