diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2007-03-30 13:19:25 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:27:07 +0200 |
commit | 861203044a89a8e0cb9b6e0200aad791ee9e5804 (patch) | |
tree | dc960f92556f6f982c528d9b84eeef8d1f3f9ba1 /Makefile.am | |
parent | d35703f70a6c0f89bcec1c97801532ab0d1b945f (diff) | |
download | gnumach-861203044a89a8e0cb9b6e0200aad791ee9e5804.tar.gz gnumach-861203044a89a8e0cb9b6e0200aad791ee9e5804.tar.bz2 gnumach-861203044a89a8e0cb9b6e0200aad791ee9e5804.zip |
2007-03-30 Thomas Schwinge <tschwinge@gnu.org>
* Makefile.am (gnumach_o_LINK): Remove ``--start-group''.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 6bca83a3..a2cf47f7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -116,12 +116,12 @@ include doc/Makefrag.am # Kernel Image # +# We need the following junk because of the include-files-from-libc.a magic. # TODO. Is the following kosher from a Automake point of view? (I.e. a # program `gnumach.o' that is then later used again as an object file.) gnumach_o_SOURCES = -# TODO. ``--start-group''. Want to keep it that way? # TODO. ``-u _start''. System dependent? -gnumach_o_LINK = $(LD) -u _start -r -o $@ --start-group +gnumach_o_LINK = $(LD) -u _start -r -o $@ noinst_PROGRAMS += \ gnumach.o |