diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2007-01-05 21:39:25 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2007-01-05 21:39:25 +0000 |
commit | 53fa2757b500c00d145621ad270e77081f4386ca (patch) | |
tree | b8e480c2230b8b40db8bb5a4ba5e69a3a6939a86 /module | |
parent | d333fad2611ee036f729c50b7e1d7f99567f027f (diff) |
Correct $PWD usage, so make install works from inside module/.
2007-01-05 Behdad Esfahbod <behdad@gnome.org>
* module/Makefile: Correct $PWD usage, so make install works from
inside module/.
svn path=/trunk/; revision=346
Diffstat (limited to 'module')
-rw-r--r-- | module/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/Makefile b/module/Makefile index b87e2a1..b36bb97 100644 --- a/module/Makefile +++ b/module/Makefile @@ -12,9 +12,9 @@ endif MODULE := sysprof-module KDIR := /lib/modules/$(shell uname -r)/build # /home/ssp/linux-2.6.19/ INCLUDE := -isystem $(KDIR)/include -MODCFLAGS := -DMODULE -D__KERNEL__ -Wall ${INCLUDE} +MODCFLAGS := -DMODULE -D__KERNEL__ -Wall $(INCLUDE) -KMAKE := $(MAKE) -C $(KDIR) SUBDIRS=$(PWD) +KMAKE := $(MAKE) -C $(KDIR) SUBDIRS=$$PWD modules: $(MODULE).o |