diff options
| author | Cem Keylan <cem@ckyln.com> | 2022-01-10 17:28:04 +0300 | 
|---|---|---|
| committer | Cem Keylan <cem@ckyln.com> | 2022-01-10 17:28:04 +0300 | 
| commit | 9f8f9ce4992f4775cb3f1a22c50499663b12c0dc (patch) | |
| tree | 0392b198498adb651a18c80973db1b80bd4faa0e /core/carbs-init/build | |
| parent | 11706b43e698e12eb03bfcf3c2987a665f22b8d3 (diff) | |
| download | repository-9f8f9ce4992f4775cb3f1a22c50499663b12c0dc.tar.gz | |
carbs-init: apply patch
Diffstat (limited to 'core/carbs-init/build')
| -rwxr-xr-x | core/carbs-init/build | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/core/carbs-init/build b/core/carbs-init/build index c46dc3e2..b2b1e639 100755 --- a/core/carbs-init/build +++ b/core/carbs-init/build @@ -1,5 +1,7 @@  #!/bin/sh -e -patch -p1 < respawn-fix.patch +for patch in *.patch; do +    patch -p1 < "$patch" +done  make DESTDIR="$1" install | 
