# HG changeset patch # User gingold@virtu10 # Node ID dc2d01757b26c9a9648e231bc7c8e5cccf949ad2 # Parent 80137e1a97cf27e026e6eb6a51a5757e160e979a Move CONFIG_XEN_PRIVCMD condition from files to directory. This allow new conditions on (future) files. Signed-off-by: Tristan Gingold diff -r 80137e1a97cf -r dc2d01757b26 linux-2.6-xen-sparse/drivers/xen/Makefile --- a/linux-2.6-xen-sparse/drivers/xen/Makefile Wed Aug 23 11:17:06 2006 +0200 +++ b/linux-2.6-xen-sparse/drivers/xen/Makefile Wed Aug 23 11:30:02 2006 +0200 @@ -1,10 +1,10 @@ obj-y += core/ obj-y += core/ obj-y += console/ obj-y += evtchn/ -obj-y += privcmd/ obj-y += xenbus/ obj-$(CONFIG_XEN_UTIL) += util.o +obj-$(CONFIG_XEN_PRIVCMD) += privcmd/ obj-$(CONFIG_XEN_BALLOON) += balloon/ obj-$(CONFIG_XEN_DEVMEM) += char/ obj-$(CONFIG_XEN_BLKDEV_BACKEND) += blkback/ diff -r 80137e1a97cf -r dc2d01757b26 linux-2.6-xen-sparse/drivers/xen/privcmd/Makefile --- a/linux-2.6-xen-sparse/drivers/xen/privcmd/Makefile Wed Aug 23 11:17:06 2006 +0200 +++ b/linux-2.6-xen-sparse/drivers/xen/privcmd/Makefile Wed Aug 23 11:30:02 2006 +0200 @@ -1,2 +1,1 @@ - -obj-$(CONFIG_XEN_PRIVCMD) := privcmd.o +obj-y := privcmd.o