Skip to content

Commit e4755de

Browse files
authored
Fix tar command (#59026)
Scheduled build failing with ``` cd [buildroot]/deps/srccache/ && /usr/bin/tar --no-same-owner -xfz [buildroot]/deps/srccache/libunwind-1.8.2.tar.gz /usr/bin/tar: z: Cannot open: No such file or directory ``` Issue probably introduced in #58796. According to chatgpt this will fix it
1 parent d150fdf commit e4755de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/unwind.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ $(SRCCACHE)/libunwind-$(UNWIND_VER).tar.gz: | $(SRCCACHE)
2020

2121
$(SRCCACHE)/libunwind-$(UNWIND_VER)/source-extracted: $(SRCCACHE)/libunwind-$(UNWIND_VER).tar.gz
2222
$(JLCHECKSUM) $<
23-
cd $(dir $<) && $(TAR) -xfz $<
23+
cd $(dir $<) && $(TAR) -xzf $<
2424
touch -c $(SRCCACHE)/libunwind-$(UNWIND_VER)/configure # old target
2525
echo 1 > $@
2626

0 commit comments

Comments
 (0)