diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-01-03 16:16:50 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-01-03 16:16:50 +0100 |
commit | 11199dd01b909d75e97df9617cc5bbb71c43fe3c (patch) | |
tree | 09628f10ca4ac21ecb096b179a01b752db43ffbb /Makefile.in | |
parent | db7ec711cfff06daa1d61fdded9d7c330d3aafc6 (diff) |
Makefile.in: un-break "make accessibility"
... caused by missing new-line after "\"
Change-Id: Ibdccf7f18e909308fbc1e58b6ddd3301e08a2223
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 2a56db0ae489..8f7dc9739e65 100644 --- a/Makefile.in +++ b/Makefile.in @@ -62,7 +62,7 @@ endif # by the module being mentioned in postprocess/prj/build.lst, etc, recursively. $(WORKDIR)/modules.mk: $(wildcard */Module_*.mk) $(wildcard */prj/dmake) $(BUILDDIR)/config_host.mk mkdir -p $(dir $@) - echo -n "gbuild_modules:= tail_build \\" > $@ + echo "gbuild_modules:= tail_build \\" > $@ for m in */Module_*.mk; do echo $$m | sed -e 's/\/.*$$/ \\/'; done >> $@ echo >> $@ echo -n "dmake_modules:= " >> $@ |