Stefan Reinauer has uploaded this change for review. ( 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 --- M Makefile 1 file changed, 3 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/em100 refs/changes/35/37535/1
diff --git a/Makefile b/Makefile index 93a2474..fd1be91 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 's,^xz,xz/xz,g' .dependencies.tmp > .dependencies + rm .dependencies.tmp
tarballs: makedpfw makechips.sh printf " CREATE config & firmware images\n"
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/em100/+/37535 )
Change subject: Fix dependencies ......................................................................
Patch Set 1:
(1 comment)
https://review.coreboot.org/c/em100/+/37535/1/Makefile File Makefile:
https://review.coreboot.org/c/em100/+/37535/1/Makefile@58 PS1, Line 58: sed 's,^xz,xz/xz,g' .dependencies.tmp > .dependencies use sed -i here ("in place"), then mv .dependencies.tmp .dependencies to update atomically.
Hello build bot (Jenkins), Patrick Georgi, Martin Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/em100/+/37535
to look at the new patch set (#2).
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 --- M Makefile 1 file changed, 3 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/em100 refs/changes/35/37535/2
Stefan Reinauer has posted comments on this change. ( https://review.coreboot.org/c/em100/+/37535 )
Change subject: Fix dependencies ......................................................................
Patch Set 2:
(1 comment)
https://review.coreboot.org/c/em100/+/37535/1/Makefile File Makefile:
https://review.coreboot.org/c/em100/+/37535/1/Makefile@58 PS1, Line 58: sed 's,^xz,xz/xz,g' .dependencies.tmp > .dependencies
use sed -i here ("in place"), then mv .dependencies.tmp .dependencies to update atomically.
Done
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/em100/+/37535 )
Change subject: Fix dependencies ......................................................................
Patch Set 2: Code-Review+2
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"