build: remove stray empty variable
authorJan Engelhardt <jengelh@inai.de>
Sat, 30 Jun 2012 00:28:25 +0000 (02:28 +0200)
committerr.kubiak <r.kubiak@samsung.com>
Mon, 16 Nov 2015 13:12:06 +0000 (14:12 +0100)
commit610b551585fa97e76895a68def2bd041c733e20b
tree841a723cec82fbe5f63d3dcb4276d1cc276913bc
parentc45ab128b0968904f30c720761a3e91e0e9f2378
build: remove stray empty variable

Compilation can fail when libnfnetlink is not in a directory searched
by default. Reason is the empty KERNELDIR variable which makes for a
gcc command like:

gcc -I. -I../include -I -Wall -I/usr/include/libnfnetlink-1.0.0+git28
-Wall -c libnetfilter_queue.c

What one would expect is that gcc would search in the (non-existent)
directory "-Wall" and just continue as usual, since -Wall is specified
again. Instead, gcc versions before 4.6 attempt to search the
(similarly non-existent) directory "-I/usr/[...]" and thus miss.

Signed-off-by: Jan Engelhardt <jengelh@inai.de>
Make_global.am