From: Michael Brown Date: Mon, 18 Apr 2005 12:45:31 +0000 (+0000) Subject: This is, of course, the neater and much more obvious way to do it. X-Git-Tag: v0.9.3~1874 X-Git-Url: http://git.etherboot.org/people/lynusvaz/gpxe.git/commitdiff_plain/ffe77e06835159dcf746ad08ff2c68f1929f9761 This is, of course, the neater and much more obvious way to do it. --- diff --git a/src/core/config.c b/src/core/config.c index 62ad62af..59db783c 100644 --- a/src/core/config.c +++ b/src/core/config.c @@ -22,25 +22,19 @@ #ifdef BUILD_SERIAL #include "config/.buildserial.h" -#define BUILD_SERIAL_STR "#" XSTR(BUILD_SERIAL_NUM) +#define BUILD_SERIAL_STR " #" XSTR(BUILD_SERIAL_NUM) #else #define BUILD_SERIAL_STR "" #endif #ifdef BUILD_ID -#define BUILD_ID_STR BUILD_ID +#define BUILD_ID_STR " " BUILD_ID #else #define BUILD_ID_STR "" #endif -#if defined(BUILD_ID) && defined(BUILD_SERIAL) -#define BUILD_SPACER " " -#else -#define BUILD_SPACER "" -#endif - #if defined(BUILD_ID) || defined(BUILD_SERIAL) -#define BUILD_STRING " [build " BUILD_ID_STR BUILD_SPACER BUILD_SERIAL_STR "]" +#define BUILD_STRING " [build" BUILD_ID_STR BUILD_SERIAL_STR "]" #else #define BUILD_STRING "" #endif