Skip to content

Commit

Permalink
Output busybox compilation to /tmp
Browse files Browse the repository at this point in the history
Busybox compilation is stressing vagrant environments running on windows
hosts, so it's better to move the compilation to a local
file system rather than to a shared one.

This is to fix errors that occur on windows hosts during busybox compilation
like "mv: cannot move foo.a.5454 to foo.a: Text file busy"

Change-Id: Ida4375f125b939ca09f06cad4b917061a8dc9a7a
Signed-off-by: Yacov Manevich <[email protected]>
  • Loading branch information
yacovm committed Jan 9, 2017
1 parent a5b12f2 commit 4ed1aa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion busybox/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BUSYBOX_VER=1.25.1
BUSYBOX_URL=https://www.busybox.net/downloads/busybox-$(BUSYBOX_VER).tar.bz2

OBJDIR=build/busybox-$(BUSYBOX_VER)
OBJDIR=/tmp/busybox-$(BUSYBOX_VER)

all: $(OBJDIR)/busybox

Expand Down

0 comments on commit 4ed1aa2

Please sign in to comment.