Skip to content

Commit

Permalink
Build system: fix cache miss and repatching (issue linuxboot#799) and…
Browse files Browse the repository at this point in the history
… remove CircleCI hack. Will have to clean CircleCI cache and test.
  • Loading branch information
tlaurion committed Aug 19, 2020
1 parent 9eff5c5 commit 6bcf70c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
name: x230-flash
#We delete build/make-4.2.1/ directory until issue #799 is fixed.
command: |
rm -rf build/make-4.2.1/ build/x230-flash/* build/log/* && make --load 2 \
rm -rf build/x230-flash/* build/log/* && make --load 2 \
V=1 \
BOARD=x230-flash \
no_output_timeout: 3h
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -602,8 +602,8 @@ $(build)/$(make_dir)/.extract: $(packages)/$(make_tar)
tar xf "$<" -C "$(build)"
touch "$@"

$(build)/$(make_dir)/.patch: patches/make-$(make_version).patch $(build)/$(make_dir)/.extract
( cd "$(dir $@)" ; patch -p1 ) < "$<"
$(build)/$(make_dir)/.patch: $(build)/$(make_dir)/.extract
( cd "$(dir $@)" ; patch -p1 ) < "patches/make-$(make_version).patch"
touch "$@"

$(build)/$(make_dir)/.configured: $(build)/$(make_dir)/.patch
Expand Down

0 comments on commit 6bcf70c

Please sign in to comment.