Skip to content

Commit 02f7d29

Browse files
committed
build-buildroot: fix is LD_LIBRARY_PATH is not defined
confiure: install rsync for docker
1 parent e79dd2c commit 02f7d29

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

common.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,8 @@ def run_cmd(
277277
env = os.environ.copy()
278278
env.update(extra_env)
279279
for key in delete_env:
280-
del env[key]
280+
if key in env:
281+
del env[key]
281282
if show_cmd:
282283
print_cmd(cmd, cmd_file, extra_env=extra_env)
283284
# Otherwise Ctrl + C gives:

configure

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ cpio \
4444
expect \
4545
git \
4646
moreutils \
47+
rsync \
4748
tmux \
4849
unzip \
4950
vinagre \

0 commit comments

Comments
 (0)