r4366 - dists/trunk/linux-2.6/debian/templates

Jurij Smakov jurij-guest at costa.debian.org
Mon Oct 10 02:41:08 UTC 2005


Author: jurij-guest
Date: 2005-10-10 02:41:07 +0000 (Mon, 10 Oct 2005)
New Revision: 4366

Modified:
   dists/trunk/linux-2.6/debian/templates/post-install.in
Log:
Sparc build is currently dying since one of the
find commands in post-install script comes up empty,
causing xargs ln -s ... to fail. I have added a -r
(aka --no-run-if-empty) to xargs, which should fix
it. I'm not sure whether this is a proper solution,
but it should not affect anybody.


Modified: dists/trunk/linux-2.6/debian/templates/post-install.in
===================================================================
--- dists/trunk/linux-2.6/debian/templates/post-install.in	2005-10-09 18:50:00 UTC (rev 4365)
+++ dists/trunk/linux-2.6/debian/templates/post-install.in	2005-10-10 02:41:07 UTC (rev 4366)
@@ -88,7 +88,7 @@
 	xargs ln -s --target-directory=$dir/include/asm-$arch
 find include/asm-$arch -mindepth 1 -maxdepth 1 \
 	-type f -links 2 |
-	xargs ln -f --target-directory=$dir/include/asm-$arch
+	xargs -r ln -f --target-directory=$dir/include/asm-$arch
 for i in include/asm-*
 do
   case ${i#include/asm-} in




More information about the Kernel-svn-changes mailing list