diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-05-28 12:00:34 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-05-28 12:00:34 -0400 |
commit | 227f83163908a1e2bfb783a7500263f5c204cb36 (patch) | |
tree | edba046c08f8ea7c52d48df8144954aa582e5108 /src/librc | |
parent | 98d3b407fefeba04a143c53d4f5faf48acd0f665 (diff) |
cc.mk: move debug.mk out of end Makefiles
Since we always want debug.mk whenever we include cc.mk, move the include
out of the Makefiles and into cc.mk itself. This also fixes an include
order bug in rc/Makefile where debug.mk is included before cc.mk and
breaks the default CFLAGS setup in cc.mk.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'src/librc')
-rw-r--r-- | src/librc/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/librc/Makefile b/src/librc/Makefile index 574aa2af..963fb415 100644 --- a/src/librc/Makefile +++ b/src/librc/Makefile @@ -12,7 +12,6 @@ CPPFLAGS+= -I../includes MK= ../../mk include ${MK}/lib.mk include ${MK}/cc.mk -include ${MK}/debug.mk # Massage our header file for our dirs SED_CMD= -e 's:@PREFIX@:${PREFIX}:g' |