diff --git a/ChangeLog b/ChangeLog index 9afe9a75f0..844d081301 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2018-09-26 Andreas Schwab + + * Makefile ($(common-objpfx)testrun.sh): Remove leading space from + output. + 2018-09-25 Adam J. Richte Adhemerval Zanella Fangrui Song diff --git a/Makefile b/Makefile index 3df55e689a..b4703e48fe 100644 --- a/Makefile +++ b/Makefile @@ -181,7 +181,7 @@ endef # the current libc build for testing. $(common-objpfx)testrun.sh: $(common-objpfx)config.make \ $(..)Makeconfig $(..)Makefile - $(file >$@T, $(testrun-script)) + $(file >$@T,$(testrun-script)) chmod a+x $@T mv -f $@T $@ postclean-generated += testrun.sh