r4554 - dists/trunk/linux-2.6/debian

Jonas Smedegaard js at costa.debian.org
Wed Oct 19 23:29:36 UTC 2005


Author: js
Date: 2005-10-19 23:29:35 +0000 (Wed, 19 Oct 2005)
New Revision: 4554

Modified:
   dists/trunk/linux-2.6/debian/changelog
   dists/trunk/linux-2.6/debian/rules.real
Log:
Fix building from within a very long dir.

Modified: dists/trunk/linux-2.6/debian/changelog
===================================================================
--- dists/trunk/linux-2.6/debian/changelog	2005-10-19 20:36:40 UTC (rev 4553)
+++ dists/trunk/linux-2.6/debian/changelog	2005-10-19 23:29:35 UTC (rev 4554)
@@ -9,7 +9,7 @@
   * Allow versions of the form 2.6.13+2.6.14-rc4-1 to work,
     at the expense of -rc4 being part of upstream rather
     than a modifier that can set the ABI. It was a bit invasive,
-    hopefully it doesn't break anything. 
+    hopefully it doesn't break anything.
 
   [ dann frazier ]
   * Enhance the linux-source description to explain the types of patches
@@ -17,8 +17,12 @@
   * Correct linux-patch-debian description.  It replaces the
     kernel-patch-debian packages, not the kernel-source packages.
 
- -- Simon Horman <horms at debian.org>  Wed, 19 Oct 2005 18:06:19 +0900
+  [ Jonas Smedegaard ]
+  * Fix building from within a very long dir (all patches was applied at
+    once - exhausting shell commandline, now applied one by one).
 
+ -- Jonas Smedegaard <dr at jones.dk>  Thu, 20 Oct 2005 01:25:36 +0200
+
 linux-2.6 (2.6.13-2) UNRELEASED; urgency=low
 
   [ Jurij Smakov ]

Modified: dists/trunk/linux-2.6/debian/rules.real
===================================================================
--- dists/trunk/linux-2.6/debian/rules.real	2005-10-19 20:36:40 UTC (rev 4553)
+++ dists/trunk/linux-2.6/debian/rules.real	2005-10-19 23:29:35 UTC (rev 4554)
@@ -160,7 +160,7 @@
 	touch $(DIR)/debian/official
 	if [ -n '$(patches)' ]; then			\
 	  cd $(DIR);					\
-	  cat $(addprefix $(CURDIR)/,$(patches)) | patch -p1;	\
+	  for patch in $(patches); do cat "$(CURDIR)/$$patch" | patch -p1; done;	\
 	fi
 	install $< $(DIR)/debian/post-install
 	touch $@




More information about the Kernel-svn-changes mailing list