Results 1 to 2 of 2
I have written a Makefile for a small module, But I am getting the following error.
make -C /lib/modules/2.6.15-28-amd64-server/build M=(PWD) modules
/bin/sh: -c: line 0: syntax error near unexpected token ...
- 04-27-2007 #1
Makefile error
I have written a Makefile for a small module, But I am getting the following error.
make -C /lib/modules/2.6.15-28-amd64-server/build M=(PWD) modules
/bin/sh: -c: line 0: syntax error near unexpected token `('
/bin/sh: -c: line 0: `make -C /lib/modules/2.6.15-28-amd64-server/build M=(PWD) modules'
make: *** [all] Error 2
Any help would be appreciated....
Thanks.
- 04-27-2007 #2Linux Enthusiast
- Join Date
- Aug 2006
- Posts
- 631
Replace:
with:Code:M=(PWD)
RegardsCode:M=$(PWD)


Reply With Quote
