projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3250af1
)
Documentation: blackfin: Makefile: Typo building issue
author
Chen Gang
<xili_gchen_5257@hotmail.com>
Sun, 5 Apr 2015 03:50:02 +0000
(11:50 +0800)
committer
Jonathan Corbet
<corbet@lwn.net>
Sat, 11 Apr 2015 13:19:31 +0000
(15:19 +0200)
Miss a ')' for ifneq in Makefile, the related building error:
Documentation/blackfin/Makefile:2: *** invalid syntax in conditional. Stop.
make[1]: *** [Documentation/blackfin] Error 2
Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Documentation/blackfin/Makefile
patch
|
blob
|
blame
|
history
diff --git
a/Documentation/blackfin/Makefile
b/Documentation/blackfin/Makefile
index 03f78059d6f5849b7914d50a2983fb6f9d678eb9..6782c58fbc297d830fdf5a1a034b7b28ce0bce02 100644
(file)
--- a/
Documentation/blackfin/Makefile
+++ b/
Documentation/blackfin/Makefile
@@
-1,5
+1,5
@@
ifneq ($(CONFIG_BLACKFIN),)
-ifneq ($(CONFIG_BFIN_GPTIMERS,)
+ifneq ($(CONFIG_BFIN_GPTIMERS
)
,)
obj-m := gptimers-example.o
endif
endif