Jonathan Nieder <jrnieder@xxxxxxxxx> writes: > @@ -1488,6 +1490,15 @@ $(patsubst %.sh,%,$(SCRIPT_SH)) : % : %.sh > chmod +x $@+ && \ > mv $@+ $@ > > +$(patsubst %.sh,%,$(SCRIPT_LIB_SH)) : % : %.sh > + $(QUIET_GEN)$(RM) $@ $@+ && \ > + sed -e 's|@SHELL_PATH@|$(SHELL_PATH_SQ)|' \ > + -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \ > + -e 's/@@NO_CURL@@/$(NO_CURL)/g' \ > + -e $(BROKEN_PATH_FIX) \ > + $@.sh >$@+ && \ > + mv $@+ $@ > + Can't you do something about this repetition from existing $(SCRIPT_SH) munging? Other than that the patch looks like Ok. -- 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