Skip to content

Commit

Permalink
Fix lockfile error due to using system lock directory.
Browse files Browse the repository at this point in the history
Changelog: Title

Signed-off-by: Kristian Amlie <kristian.amlie@northern.tech>
  • Loading branch information
kacf committed Apr 4, 2018
1 parent 27f9e8d commit 7879f6a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,9 @@ fake-env.txt 0 $BOOTENV_SIZE
fake-env.txt 0 $BOOTENV_SIZE
EOF
# Save compiled U-Boot environment
tools/env/fw_printenv > "$TMP_DIR/compiled-environment.txt"
mkdir -p fw_printenv.lock
tools/env/fw_printenv -l fw_printenv.lock > "$TMP_DIR/compiled-environment.txt"
rm -rf fw_printenv.lock

# cmd/.version.o.cmd is automatically built by the build system and contains all
# dependencies for the given source file. We use this to go through all the
Expand Down

0 comments on commit 7879f6a

Please sign in to comment.