* Makefile.in (CXXFLAGS): Use 'override' to correctly set flags to generate

dependencies when invoked from top-level make.
This commit is contained in:
Christopher Faylor
2005-09-02 17:12:37 +00:00
parent 8f36ef2f33
commit 414808f9e0
11 changed files with 40 additions and 21 deletions

View File

@ -158,12 +158,7 @@ cygheap_init ()
cygheap_protect.init ("cygheap_protect");
if (!cygheap)
{
#if 1
cygheap = (init_cygheap *) memset (_cygheap_start, 0, _cygheap_mid - _cygheap_start);
#else
cygheap = (init_cygheap *) _cygheap_start;
#endif
cygheap_max = cygheap;
_csbrk (sizeof (*cygheap));
}