b43-asm: fix compile error: undefined reference to `yydebug'
authorHauke Mehrtens <hauke@hauke-m.de>
Thu, 28 Feb 2013 10:34:43 +0000 (11:34 +0100)
committerMichael Buesch <m@bues.ch>
Thu, 28 Feb 2013 12:28:46 +0000 (13:28 +0100)
commit62ac5a230d3e0d3bf92d1d4a1ce0a82189010e86
tree7ca4c55b1fd3334849ed32eeada4a295bc913dc5
parent25b3c27189d835ea84c8a91f48f68a1c46f377e0
b43-asm: fix compile error: undefined reference to `yydebug'

With bison 2.7 YYDEBUG will be set to 0 if it was not set, then #ifdef
YYDEBUG returns true, but bison 2.7 treets YYDEBUG 0 as not set.

This fixes the following error:
obj/main.o: In function `main':
main.c:(.text.startup+0xaf): undefined reference to `yydebug'
collect2: error: ld returned 1 exit status

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
assembler/Makefile
assembler/main.c