"John 'Warthog9' Hawley" <warthog9@xxxxxxxxxxxxxx> writes: > From: Jakub Narebski <jnareb@xxxxxxxxx> > +install-modules: > + install_dirs="$(sort $(dir $(GITWEB_MODULES)))" && \ > + for dir in $$install_dirs; do \ > + test -d '$(DESTDIR_SQ)$(gitweblibdir_SQ)/$$dir' || \ > + $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(gitweblibdir_SQ)/$$dir'; \ This should be + $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(gitweblibdir_SQ)'/$$dir; \ or even + $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(gitweblibdir_SQ)'/"$$dir"; \ Shell variables should be not inside single quotes (as oposed to make variables, where it does not matter). Please rebase on top of v7.4, where it was fixed. -- Jakub Narebski Poland ShadeHawk on #git -- 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