From cba8e0edcc630466f2d324e2ad7ac5a1d4bda080 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sat, 17 Mar 2018 23:14:50 +0000 Subject: [PATCH] Fix patch script --- scripts/patches.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/patches.sh b/scripts/patches.sh index 7a2b4ce85..3e94f764c 100644 --- a/scripts/patches.sh +++ b/scripts/patches.sh @@ -1,8 +1,6 @@ #!/bin/bash set -e -BUILDROOT_PATCHES="buildroot-patches/" - -for patch_file in "$BUILDROOT_PATCHES"; do +for patch_file in buildroot-patches/*; do patch -d buildroot/ -p1 < ${patch_file}; done