]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Documentation: blackfin: Makefile: Typo building issue
authorChen Gang <xili_gchen_5257@hotmail.com>
Sun, 5 Apr 2015 03:50:02 +0000 (11:50 +0800)
committerJonathan 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

index 03f78059d6f5849b7914d50a2983fb6f9d678eb9..6782c58fbc297d830fdf5a1a034b7b28ce0bce02 100644 (file)
@@ -1,5 +1,5 @@
 ifneq ($(CONFIG_BLACKFIN),)
-ifneq ($(CONFIG_BFIN_GPTIMERS,)
+ifneq ($(CONFIG_BFIN_GPTIMERS),)
 obj-m := gptimers-example.o
 endif
 endif