diff options
author | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2004-10-14 09:53:15 +0000 |
---|---|---|
committer | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2004-10-14 09:53:15 +0000 |
commit | 6bc6a6f5d779643263f83d9f348c3dd9d788bae9 (patch) | |
tree | 1e7a9a73b57d455c742e947178447319bf1ff98a /libpthread/Makefile | |
parent | f8b23fd8da1d342dfd4f5e67377d7c0f08eb3603 (diff) |
Peter Mazinger writes:
The attached patch is an updated version of an earlier sent patch
It solves the problem that the target utils (ldconfig/ldd/iconv, readelf
is not handled, but can be easily added) are not built w/ the newly
created [S]crt[01].o files.
Diffstat (limited to 'libpthread/Makefile')
-rw-r--r-- | libpthread/Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/libpthread/Makefile b/libpthread/Makefile index 6938b0387..2e3d5a856 100644 --- a/libpthread/Makefile +++ b/libpthread/Makefile @@ -38,14 +38,10 @@ ifeq ($(strip $(PTHREADS_DEBUG_SUPPORT)),y) endif endif -ifeq ($(strip $(UCLIBC_CTOR_DTOR)),y) -ifeq ($(strip $(DOPIC)),y) - START_FILES = $(TOPDIR)lib/crti.o $(LIBGCC_DIR)crtbeginS.o - END_FILES = $(LIBGCC_DIR)crtendS.o $(TOPDIR)lib/crtn.o -else - START_FILES = $(TOPDIR)lib/crti.o $(LIBGCC_DIR)crtbegin.o - END_FILES = $(LIBGCC_DIR)crtend.o $(TOPDIR)lib/crtn.o -endif +# do we really have to unset these? +ifneq ($(strip $(UCLIBC_CTOR_DTOR)),y) + START_FILES = + END_FILES = endif ALL_SUBDIRS = linuxthreads linuxthreads_db |