Jakub Narebski <jnareb@xxxxxxxxx> writes: >> > +install-modules: >> > + install_dirs=$(sort $(dir $(GITWEB_MODULES))) && \ >> > ... > > For example with the following Makefile: > > GITWEB_MODULES += GitwebCache/SimpleFileCache.pm > GITWEB_MODULES += GitwebCache/Capture.pm > GITWEB_MODULES += GitwebCache/Capture/SelectFH.pm > GITWEB_MODULES += Gitweb/Config.pm > > all: > @echo $(sort $(dir $(GITWEB_MODULES))) > > running 'make' results in: > > Gitweb/ GitwebCache/ GitwebCache/Capture/ Try replacing that with: all: install_dirs=$(sort $(dir $(GITWEB_MODULES))) && \ echo $$install_dirs perhaps? Hint: dq. -- 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