Re: [ketchup] patch to allow for moving of .gitignore in 2.6.14

From: Steven Rostedt
Date: Sat Oct 29 2005 - 16:06:36 EST



I already posted this patch to Matt and LKML, but I'm posting it again
incase anyone else has this problem using ketchup on 2.6.14 from nothing,
and does a google looking for a fix.

Here's the current output error:

$ ketchup 2.6.14
None -> 2.6.14
Unpacking linux-2.6.14.tar.bz2
rmdir: `linux-2.6.14': Directory not empty
ketchup: Unpacking failed:
256


Here's the patch:

-- Steve

Index: Ketchup-d9503020b3c1/ketchup
===================================================================
--- Ketchup-d9503020b3c1.orig/ketchup 2005-10-28 08:38:50.000000000 -0400
+++ Ketchup-d9503020b3c1/ketchup 2005-10-28 10:45:43.000000000 -0400
@@ -482,7 +482,7 @@
error("Unpacking failed: ", err)
sys.exit(-1)

- err = os.system("mv linux*/* . ; rmdir linux*")
+ err = os.system("shopt -s dotglob; mv linux*/* . ; rmdir linux*")
if err:
error("Unpacking failed: ", err)
sys.exit(-1)

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/