diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-21 20:32:51 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-21 20:32:51 +0000 |
commit | 9995419beef9f7d49adce830e12792c4e3b7f926 (patch) | |
tree | 65586cd73dd592b7b772dc16190f871a1662da4a /extra/gcc-uClibc/gcc-uClibc.c | |
parent | a8aa4c64466559223130206323ef1b9f0b6b8b43 (diff) |
Patch from Andreas Neuhaus <andy@fasta.fh-dortmund.de>
gcc was looking for crt0 in the wrong dir. Oops!
Diffstat (limited to 'extra/gcc-uClibc/gcc-uClibc.c')
-rw-r--r-- | extra/gcc-uClibc/gcc-uClibc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/gcc-uClibc/gcc-uClibc.c b/extra/gcc-uClibc/gcc-uClibc.c index 710be8df0..f0c5fae1c 100644 --- a/extra/gcc-uClibc/gcc-uClibc.c +++ b/extra/gcc-uClibc/gcc-uClibc.c @@ -69,7 +69,7 @@ static char *uClibc_inc[] = { static char *crt0_path[] = { UCLIBC_INSTALL_DIR"lib/crt0.o", - UCLIBC_BUILD_DIR"crt0.o" + UCLIBC_BUILD_DIR"lib/crt0.o" }; static char *lib_path[] = { |