- Fix DBG macro AGAIN which got broken during the switch to cmake. Checked build: DBG = 1, free build: DBG = 0. Noobs.

svn path=/trunk/; revision=56090
This commit is contained in:
Stefan Ginsberg
2012-03-08 09:18:28 +00:00
parent a7caca2e37
commit 1016fc25ff
12 changed files with 19 additions and 17 deletions
+2 -2
View File
@@ -22,13 +22,13 @@
#endif
#ifdef CONFIG_SMP
#ifdef DBG
#if DBG
#define HAL_BUILD_TYPE (DBG ? PRCB_BUILD_DEBUG : 0)
#else
#define HAL_BUILD_TYPE 0
#endif
#else
#ifdef DBG
#if DBG
#define HAL_BUILD_TYPE ((DBG ? PRCB_BUILD_DEBUG : 0) | PRCB_BUILD_UNIPROCESSOR)
#else
#define HAL_BUILD_TYPE 0 | PRCB_BUILD_UNIPROCESSOR