Wincent Colaiuta <win@xxxxxxxxxxx> writes: > install: all > $(INSTALL) -d -m755 '$(DESTDIR_SQ)$(template_dir_SQ)' > - (cd blt && $(TAR) cf - .) | \ > + cd blt && $(TAR) cf - . | \ > (cd '$(DESTDIR_SQ)$(template_dir_SQ)' && $(TAR) xf -) > + cd - Actually I suspect replacing the "cd blt" in the original with "cd ./blt", without changing anything else, would squelch the CDPATH problem. We could write it as "$(TAR) Ccf blt - ." if we can rely on the 'C' option, but I suspect it is a GNU extension. Does anybody have POSIX.1 handy? - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html