diff options
author | Cem Keylan <cem@ckyln.com> | 2020-04-23 00:35:57 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-04-23 00:35:57 +0300 |
commit | 4d00567bf269b7e5cd2bc53b45c9282a726eaaa1 (patch) | |
tree | 9653616716f9add193e2c0399e378dd99983506c /core/busybox/build | |
parent | 6685001a647c8810802c4fdab3279909a7d58ef1 (diff) | |
download | repository-4d00567bf269b7e5cd2bc53b45c9282a726eaaa1.tar.gz |
busybox: apply patches
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}" |