diff options
Diffstat (limited to 'xibuild/build_profile')
-rw-r--r-- | xibuild/build_profile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/xibuild/build_profile b/xibuild/build_profile index 2129265..dd25cd0 100644 --- a/xibuild/build_profile +++ b/xibuild/build_profile @@ -1,3 +1,9 @@ +apply_patches () { + for p in *.patch; do + echo "Applying $p" + patch -Np1 -i $p + done +} export JOBS=$(grep "processor" /proc/cpuinfo | wc -l) export HOME=/root |