diff options
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 |