r2275 - trunk/kernel-2.4/i386/kernel-image-2.4.27-i386-2.4.27/debian

Simon Horman horms@costa.debian.org
Wed, 12 Jan 2005 09:27:37 +0100


Author: horms
Date: 2005-01-12 09:27:36 +0100 (Wed, 12 Jan 2005)
New Revision: 2275

Modified:
   trunk/kernel-2.4/i386/kernel-image-2.4.27-i386-2.4.27/debian/changelog
   trunk/kernel-2.4/i386/kernel-image-2.4.27-i386-2.4.27/debian/rules
Log:
se cp -a instead of cp -al. The latter used to
    work using a doctored version of touch that would 
    try and effect copy on write. Unfortunately this
    broke horribly with parallalised builds.


Modified: trunk/kernel-2.4/i386/kernel-image-2.4.27-i386-2.4.27/debian/changelog
===================================================================
--- trunk/kernel-2.4/i386/kernel-image-2.4.27-i386-2.4.27/debian/changelog	2005-01-12 07:38:21 UTC (rev 2274)
+++ trunk/kernel-2.4/i386/kernel-image-2.4.27-i386-2.4.27/debian/changelog	2005-01-12 08:27:36 UTC (rev 2275)
@@ -1,8 +1,12 @@
 kernel-image-2.4.27-i386 (2.4.27-8) UNRELEASED; urgency=low
 
   * Built against kernel-source-2.4.27 2.4.27-8
+  * Use cp -a instead of cp -al. The latter used to
+    work using a doctored version of touch that would
+    try and effect copy on write. Unfortunately this
+    broke horribly with parallalised builds.
 
- -- Simon Horman <horms@debian.org>  Fri,  7 Jan 2005 16:52:25 +0900
+ -- Simon Horman <horms@debian.org>  Wed, 12 Jan 2005 17:31:48 +0900
 
 kernel-image-2.4.27-i386 (2.4.27-7) unstable; urgency=high
 

Modified: trunk/kernel-2.4/i386/kernel-image-2.4.27-i386-2.4.27/debian/rules
===================================================================
--- trunk/kernel-2.4/i386/kernel-image-2.4.27-i386-2.4.27/debian/rules	2005-01-12 07:38:21 UTC (rev 2274)
+++ trunk/kernel-2.4/i386/kernel-image-2.4.27-i386-2.4.27/debian/rules	2005-01-12 08:27:36 UTC (rev 2275)
@@ -54,7 +54,7 @@
 	> kernel-source-$(version)/debian/official
 	install post-install kernel-source-$(version)/debian
 	for i in $(flavours); do \
-		cp -al kernel-source-$(version) build-$$i; \
+		cp -a kernel-source-$(version) build-$$i; \
 		cp config/$$i build-$$i/.config; \
 		sed "s/@version@/$(debver)-$$i/g" $(kpm).postinst > \
 			build-$$i/debian/$(kpm)-$(debver)-$$i.postinst; \
@@ -104,7 +104,7 @@
 	mv kernel-source-$(version)/debian/files debian
 
 	for i in $(flavours); do \
-		cp -al build-$$i install-$$i; \
+		cp -a build-$$i install-$$i; \
 		cd install-$$i; \
 		make-kpkg --append_to_version $(debnum)-$$i \
 			--initrd kernel-image; \