All of lore.kernel.org
 help / color / mirror / Atom feed
* [Xenomai] [PATCH] prepare-kernel: Only purge links from target directories
@ 2013-01-09 13:47 Jan Kiszka
  2013-01-12 17:12 ` Gilles Chanteperdrix
  0 siblings, 1 reply; 5+ messages in thread
From: Jan Kiszka @ 2013-01-09 13:47 UTC (permalink / raw)
  To: Xenomai

Only remove files from the target directory of patch_link if they are
missing in Xenomai AND are actually symbolic links. This is required
when merging Xenomai directories into non-empty kernel dirs.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---

This is not required for the current patch workload but helps us in 2.6
with integrating ftrace (we patch into include/trace/events there).
Would reduce our queue length by one if this could be merged
nevertheless.

 scripts/prepare-kernel.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scripts/prepare-kernel.sh b/scripts/prepare-kernel.sh
index 36f9a4a..5f4043a 100755
--- a/scripts/prepare-kernel.sh
+++ b/scripts/prepare-kernel.sh
@@ -103,7 +103,7 @@ patch_link() {
 	    find . $recursive_opt \( $directorytype_opt \
                 $link_makefiles_opt -name $config_file -o -name '*.[chS]' \) |
             while read f; do
-                if test ! -e $xenomai_root/$target_dir/$f; then rm -Rf $f; fi
+                if test -L $f -a ! -e $xenomai_root/$target_dir/$f; then rm -Rf $f; fi
             done
         fi
 
-- 
1.7.3.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-01-13 11:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-09 13:47 [Xenomai] [PATCH] prepare-kernel: Only purge links from target directories Jan Kiszka
2013-01-12 17:12 ` Gilles Chanteperdrix
2013-01-13 11:17   ` Jan Kiszka
2013-01-13 11:50     ` Gilles Chanteperdrix
2013-01-13 11:54       ` Jan Kiszka

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.