Stefan Reinauer has submitted this change. ( https://review.coreboot.org/c/em100/+/37535 )
Change subject: Fix dependencies ......................................................................
Fix dependencies
Jenkins won't let us do perl -pi -e, so let's not do in-place replacement.
Change-Id: I74d93713cb97bd2b2c415234710fd2b34f6a1c02 Signed-off-by: Stefan Reinauer stefan.reinauer@coreboot.org Reviewed-on: https://review.coreboot.org/c/em100/+/37535 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Patrick Georgi pgeorgi@google.com --- M Makefile 1 file changed, 3 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Patrick Georgi: Looks good to me, approved
diff --git a/Makefile b/Makefile index 93a2474..a5b8c33 100644 --- a/Makefile +++ b/Makefile @@ -54,8 +54,9 @@ $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ -c $<
dep: $(SOURCES) - $(CC) $(CFLAGS) -MM $(SOURCES) > .dependencies - #perl -pi -e 's,^xz,xz/xz,g' .dependencies + $(CC) $(CFLAGS) -MM $(SOURCES) > .dependencies.tmp + sed -i 's,^xz,xz/xz,g' .dependencies.tmp + mv .dependencies.tmp .dependencies
tarballs: makedpfw makechips.sh printf " CREATE config & firmware images\n"