summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-01-03 16:16:50 +0100
committerMichael Stahl <mstahl@redhat.com>2013-01-03 16:16:50 +0100
commit11199dd01b909d75e97df9617cc5bbb71c43fe3c (patch)
tree09628f10ca4ac21ecb096b179a01b752db43ffbb /Makefile.in
parentdb7ec711cfff06daa1d61fdded9d7c330d3aafc6 (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.in2
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:= " >> $@