diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-01 16:26:47 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-01 16:26:47 +0000 |
commit | d45bfbaa13e5471c5ba700b4800ae077f69a39de (patch) | |
tree | 54c8d2a1548624b30dc3a104ba040dc1f51a3570 /libc/sysdeps/linux/common | |
parent | 832a0f27f667418ba97e69b0aa29ad065414fcae (diff) |
Correct gcc-4.1 ssp build
Diffstat (limited to 'libc/sysdeps/linux/common')
-rw-r--r-- | libc/sysdeps/linux/common/Makefile.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/Makefile.in b/libc/sysdeps/linux/common/Makefile.in index 2ddb9128a..2775a91fc 100644 --- a/libc/sysdeps/linux/common/Makefile.in +++ b/libc/sysdeps/linux/common/Makefile.in @@ -14,8 +14,8 @@ ifeq ($(EXCLUDE_BRK),y) CSRC:=$(filter-out sbrk.c,$(CSRC)) endif -CSRC:=$(filter-out ssp-local.c,$(CSRC)) ifneq ($(UCLIBC_HAS_SSP),y) +CSRC:=$(filter-out ssp-local.c,$(CSRC)) CSRC:=$(filter-out ssp.c,$(CSRC)) endif @@ -31,7 +31,6 @@ COMMON_SRC:=$(patsubst %.c,$(COMMON_DIR)/%.c,$(CSRC)) COMMON_OBJ:=$(patsubst %.c,$(COMMON_OUT)/%.o,$(CSRC)) libc-a-y+=$(COMMON_OBJ) -libc-a-static-$(UCLIBC_HAS_SSP)+=$(COMMON_OUT)/ssp-local.o libc-so-y+=$(COMMON_OBJ:.o=.os) libc-nonshared-$(UCLIBC_HAS_SSP)+=$(COMMON_OUT)/ssp-local.os |