diff options
Diffstat (limited to 'core/busybox/build')
-rwxr-xr-x | core/busybox/build | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/busybox/build b/core/busybox/build index 7ea1dafc..af6445af 100755 --- a/core/busybox/build +++ b/core/busybox/build @@ -1,5 +1,9 @@ #!/bin/sh -e +for patch in *.patch; do + patch -p1 < "$patch" +done + # Build and install regular busybox. # This excludes utilities which require 'suid' to function. make CC="${CC:-gcc}" |