This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, master has been updated via 9898206eba5a742f66fde5b3250f3ac3974022b9 (commit) from 15af725ea401ba1436abd848080e62188e79e4be (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 9898206eba5a742f66fde5b3250f3ac3974022b9 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sat Jun 12 11:26:45 2010 +0200
Fix patching order for xen-patches.
-----------------------------------------------------------------------
Summary of changes: lfs/linux | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
Difference in files: diff --git a/lfs/linux b/lfs/linux index cf609f2..a4bf286 100644 --- a/lfs/linux +++ b/lfs/linux @@ -111,9 +111,9 @@ ifeq "$(XEN)" "1" mkdir -p $(DIR_SRC)/xen-patches cd $(DIR_SRC)/xen-patches && tar jxf $(DIR_DL)/xen-patches-2.6.32-2.tar.bz2
- for x in `find $(DIR_SRC)/xen-patches/ -type f`; do \ + for x in `ls -1 $(DIR_SRC)/xen-patches/*.patch1`; do \ echo "*********** [Patch: $$x]"; \ - patch -d $(DIR_APP) -p1 < $$x || break; \ + cd $(DIR_APP) && pwd && patch -Np1 < $$x || exit 1; \ done rm -rf $(DIR_SRC)/xen-patches
hooks/post-receive -- IPFire 2.x development tree