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] Fix buildsystem.

# HG changeset patch
# User cl349@xxxxxxxxxxxxxxxxxxxx
# Node ID cc63196c0d2ff4d124b5896f6c79ac1392e973d0
# Parent  3b9c2c410b14f55d33708c00ebb080ece760298f
Fix buildsystem.

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

diff -r 3b9c2c410b14 -r cc63196c0d2f .hgignore
--- a/.hgignore Thu Feb  2 19:21:18 2006
+++ b/.hgignore Thu Feb  2 21:21:47 2006
@@ -13,6 +13,7 @@
 .*\.flc$
 .*\.orig$
 .*\.rej$
+^.valid-srcs$
 ^TAGS$
 ^dist/.*$
 ^docs/.*\.aux$
diff -r 3b9c2c410b14 -r cc63196c0d2f buildconfigs/mk.linux-2.6-xen
--- a/buildconfigs/mk.linux-2.6-xen     Thu Feb  2 19:21:18 2006
+++ b/buildconfigs/mk.linux-2.6-xen     Thu Feb  2 21:21:47 2006
@@ -3,6 +3,8 @@
 
 LINUX_SERIES = 2.6
 LINUX_VER    = 2.6.16-rc1-git4
+LINUX_SRCS = linux-2.6.15.tar.bz2 patch-2.6.16-rc1.bz2 
patch-2.6.16-rc1-git4.bz2
+LINUX_PDIR = linux-$(LINUX_VER)
 
 EXTRAVERSION ?= xen
 
@@ -20,15 +22,17 @@
        fi
        $(MAKE) -C $(LINUX_DIR) ARCH=$(LINUX_ARCH) INSTALL_PATH=$(DESTDIR) 
install
 
-pristine-linux-%/.valid-pristine: override _LINUX_PDIR = linux-$*.16-rc1-git4
-pristine-linux-%.16-rc1-git4/.valid-pristine: linux-%.15.tar.bz2 
patch-%.16-rc1.bz2 patch-%.16-rc1-git4.bz2
-       rm -rf tmp-pristine-$(_LINUX_PDIR) $(@D)
-       mkdir -p tmp-pristine-$(_LINUX_PDIR)
-       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
+.valid-srcs: $(LINUX_SRCS)
+       touch $@
+
+pristine-linux-%.16-rc1-git4/.valid-pristine: .valid-srcs
+       rm -rf tmp-pristine-$(LINUX_PDIR) $(@D)
+       mkdir -p tmp-pristine-$(LINUX_PDIR)
+       tar -C tmp-pristine-$(LINUX_PDIR) -jxf $(word 1,$(LINUX_SRCS))
+       -@rm tmp-pristine-$(LINUX_PDIR)/pax_global_header
+       mv tmp-pristine-$(LINUX_PDIR)/* $(@D)
+       @rm -rf tmp-pristine-$(LINUX_PDIR)
+       bzcat $(wordlist 2,$(words $(LINUX_SRCS)),$(LINUX_SRCS)) | patch -d 
$(@D) -p1
        touch $(@D)/.hgskip
        touch $@ # update timestamp to avoid rebuild
 

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Fix buildsystem., Xen patchbot -unstable <=