kni: fix build clean on Ubuntu
authorOlivier Matz <olivier.matz@6wind.com>
Mon, 30 May 2016 11:56:46 +0000 (13:56 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 7 Jun 2016 08:26:38 +0000 (10:26 +0200)
commitc69601c4b591652d8091e8a216eb5030cbede10d
tree9dd8636aa57125884ef525bfc9a1d2316018a9d0
parent52b50e8a6bc11b7b83a83c120bd250a25627c79c
kni: fix build clean on Ubuntu

The $(comma) variable is not defined in this Makefile, nor in
any included Makefile. Seen while doing a "make clean" on ubuntu:

  $ make clean
  == Clean lib
  == Clean lib/librte_compat
  == Clean lib/librte_eal
  == Clean lib/librte_eal/common
  == Clean lib/librte_eal/linuxapp
  == Clean lib/librte_eal/linuxapp/eal
  == Clean lib/librte_eal/linuxapp/igb_uio
  == Clean lib/librte_eal/linuxapp/kni
  tr: missing operand after ‘.-’
  Two strings must be given when translating.
  Try 'tr --help' for more information.

This commit replaces $(comma) by a ',' character, it's not a problem in
that case since we are inside antiquotes.

Fixes: a09b359daca3 ("kni: fix build on Ubuntu 14.04")

Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Acked-by Ferruh Yigit <ferruh.yigit@intel.com>
lib/librte_eal/linuxapp/kni/Makefile