Allow flag string to be undefined.

This commit is contained in:
Andy McFadden 2014-10-29 14:01:33 -07:00
parent d34f09ba8f
commit 8f1bea0a47
1 changed files with 4 additions and 0 deletions

View File

@ -13,7 +13,11 @@ static const char gNuBuildDate[] = __DATE__;
static const char gNuBuildDate[] = "??? ?? ????";
#endif
#ifdef OPTFLAGSTR
static const char gNuBuildFlags[] = OPTFLAGSTR;
#else
static const char gNuBuildFlags[] = "-";
#endif
/*