GRBL1.1 Not compiling - Exit Status 1 Error compiling for board Arduino Nano.

Hi. I get "Error compiling for board Arduino Nano." error on fresh install of Arduino IDE

Full Error message below:

Arduino: 1.8.9 (Windows 10), Board: "Arduino Nano, ATmega328P"

In file included from C:\Users\oddw2\Documents\Arduino\libraries\grbl\grbl.h:46:0,

from C:\Users\oddw2\Documents\Arduino\libraries\grbl\settings.c:22:

C:\Users\oddw2\Documents\Arduino\libraries\grbl\settings.c: In function 'settings_restore':

C:\Users\oddw2\Documents\Arduino\libraries\grbl\defaults.h:519:37: error: expected expression before '=' token

#define DEFAULT_SOFT_LIMIT_ENABLE = // false

^

C:\Users\oddw2\Documents\Arduino\libraries\grbl\settings.c:93:9: note: in expansion of macro 'DEFAULT_SOFT_LIMIT_ENABLE'

if (DEFAULT_SOFT_LIMIT_ENABLE) { settings.flags |= BITFLAG_SOFT_LIMIT_ENABLE; }

^

Using library grbl in folder: C:\Users\oddw2\Documents\Arduino\libraries\grbl (legacy)
exit status 1
Error compiling for board Arduino Nano.

One of the problems is this line:

   #define DEFAULT_SOFT_LIMIT_ENABLE = // false

You've commented out the true/false setting.

Something is messed up in your install of GRBL. The error messages says that the bad declaration of DEFAULT_SOFT_LIMIT_ENABLE is in line 519 of defaults.h but in the source code, defaults.h doesn't have a line 519. In all the other sections of that file the definition is '0', not '='. Someone added some bad data to your library.

Thanks guys. Found it -- also did not see where it was but there is an "=" instead of a "0" in the code on Github download GitHub - gnea/grbl: An open source, embedded, high performance g-code-parser and CNC milling controller written in optimized C that will run on a straight Arduino