aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-08-11 21:08:51 +0000
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-08-11 21:08:51 +0000
commit7f499abfcb448fffeb483fe83bc8400b31dd7feb (patch)
treec41b825aa4059c3c075107b1ffec9d04012bf075
parent1e9c20a94e75fa08c59e55f03bab0d6a8e9d8529 (diff)
downloadxen-7f499abfcb448fffeb483fe83bc8400b31dd7feb.tar.gz
xen-7f499abfcb448fffeb483fe83bc8400b31dd7feb.tar.bz2
xen-7f499abfcb448fffeb483fe83bc8400b31dd7feb.zip
A simple make ARCH=xen clean && make ARCH=xen vmlinuz will fail because
arch/xen/x86_64/kernel/pci-nommu.c and arch/xen/x86_64/kernel/pci-dma.c symlinks get removed and relinked to base implementation. Make these non c-obj's to preserve sparse tree links. Signed-off-by: Chris Wright <chrisw@osdl.org>
-rw-r--r--linux-2.6-xen-sparse/arch/xen/x86_64/kernel/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-2.6-xen-sparse/arch/xen/x86_64/kernel/Makefile b/linux-2.6-xen-sparse/arch/xen/x86_64/kernel/Makefile
index 1cbf9e71e2..66c30436cc 100644
--- a/linux-2.6-xen-sparse/arch/xen/x86_64/kernel/Makefile
+++ b/linux-2.6-xen-sparse/arch/xen/x86_64/kernel/Makefile
@@ -36,7 +36,7 @@ c-obj-$(CONFIG_X86_IO_APIC) += genapic_cluster.o genapic_flat.o
#obj-$(CONFIG_CPU_FREQ) += cpufreq/
#obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
#obj-$(CONFIG_GART_IOMMU) += pci-gart.o aperture.o
-c-obj-$(CONFIG_DUMMY_IOMMU) += pci-nommu.o pci-dma.o
+obj-$(CONFIG_DUMMY_IOMMU) += pci-nommu.o pci-dma.o
#obj-$(CONFIG_SWIOTLB) += swiotlb.o
obj-$(CONFIG_KPROBES) += kprobes.o
obj-$(CONFIG_X86_PM_TIMER) += pmtimer.o