Skip to content

Commit 3686e87

Browse files
authored
Merge pull request #606 from wking/command-substitution-bashism
contrib/rootfs-builder: Use $(cat rootfs-files)
2 parents 3f64e51 + ff399f1 commit 3686e87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/rootfs-builder/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rootfs/%/bin/busybox: downloads/stage3-%-current.tar rootfs-files
1515
sudo rm -rf rootfs/$*
1616
sudo mkdir -p rootfs/$*
1717
sudo tar -xvf downloads/stage3-$*-current.tar -C rootfs/$* \
18-
--no-recursion --wildcards $$(< rootfs-files)
18+
--no-recursion --wildcards $$(cat rootfs-files)
1919
sudo touch $@
2020

2121
.PRECIOUS: rootfs/%/bin/echo

0 commit comments

Comments
 (0)