Fixing problem with spaces in ndk-build arguments.

ndk-build accepts command-line arguments which are passed to
the underlying "make" process. For example:

  ndk-build EXTRA_CFLAGS=-DDOG

Previously, these extra arguments could not contain spaces:

  ndk-build EXTRA_CFLAGS="-DDOG -DCAT" # fails

This change fixes that issue.

Change-Id: I907d6dbb73db1608f1628c930649564a2aa39456
1 file changed