Skip to content

Commit

Permalink
Quote PATH variable in case it contains whitespaces (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
rvansa authored Mar 28, 2024
1 parent daeef8f commit 3162e80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ LZ4_OBJS = lz4/lib/liblz4.a criu/liblz4io.a
$(LZ4_OBJS) :
git submodule init
git submodule update
$(Q) env -i PATH=$$PATH make CC=$(CC) CFLAGS="$(CFLAGS)" -C lz4 lib lz4
$(Q) env -i PATH="$$PATH" make CC=$(CC) CFLAGS="$(CFLAGS)" -C lz4 lib lz4
$(Q) $(AR) rcs criu/liblz4io.a lz4/programs/lz4io.o

criu-deps += $(LZ4_OBJS)
Expand Down

0 comments on commit 3162e80

Please sign in to comment.