WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] One more fix to the buildsystem ($^ is not $<).

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] One more fix to the buildsystem ($^ is not $<).
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Fri, 03 Feb 2006 19:24:18 +0000
Delivery-date: Fri, 03 Feb 2006 19:36:54 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User cl349@xxxxxxxxxxxxxxxxxxxx
# Node ID aeaa1f0dedd8cf247aa6cac302c0421457241956
# Parent  6b14b81dc5a8aba85472573f23dedfcbfcdf2f2b
One more fix to the buildsystem ($^ is not $<).

Signed-off-by: Christian Limpach <Christian.Limpach@xxxxxxxxxxxx>

diff -r 6b14b81dc5a8 -r aeaa1f0dedd8 buildconfigs/mk.linux-2.6-xen
--- a/buildconfigs/mk.linux-2.6-xen     Fri Feb  3 09:54:04 2006
+++ b/buildconfigs/mk.linux-2.6-xen     Fri Feb  3 10:00:15 2006
@@ -25,11 +25,11 @@
 pristine-$(LINUX_PDIR)/.valid-srcs: $(LINUX_SRCS)
        rm -rf tmp-pristine-$(LINUX_PDIR) $(@D)
        mkdir -p tmp-pristine-$(LINUX_PDIR)
-       tar -C tmp-pristine-$(LINUX_PDIR) -jxf $(word 1,$<)
+       tar -C tmp-pristine-$(LINUX_PDIR) -jxf $<
        -@rm tmp-pristine-$(LINUX_PDIR)/pax_global_header
        mv tmp-pristine-$(LINUX_PDIR)/* $(@D)
        @rm -rf tmp-pristine-$(LINUX_PDIR)
-       bzcat $(wordlist 2,$(words $<),$<) | patch -d $(@D) -p1
+       bzcat $(wordlist 2,$(words $^),$^) | patch -d $(@D) -p1
        touch $(@D)/.hgskip
        touch $@
 

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] One more fix to the buildsystem ($^ is not $<)., Xen patchbot -unstable <=