diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-10-11 18:31:26 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-10-11 18:31:26 +0000 |
commit | 50143b1b6f026d55bfc9156b84c3dee0773e47f5 (patch) | |
tree | e1cc038596ce086412d286f15fb3e903dd8702f6 /libc/sysdeps | |
parent | 73649ffabcf481cc0e2f668062526931d5040901 (diff) |
Allow building uClibc w/ make-3.79.1 if SSP is disabled
Diffstat (limited to 'libc/sysdeps')
-rw-r--r-- | libc/sysdeps/linux/common/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/Makefile b/libc/sysdeps/linux/common/Makefile index 87791724a..44014979d 100644 --- a/libc/sysdeps/linux/common/Makefile +++ b/libc/sysdeps/linux/common/Makefile @@ -31,9 +31,9 @@ SRCS := $(filter-out ssp.c,$(SRCS)) NONSHARED_OBJ_LIST= else NONSHARED_OBJ_LIST=../../../nonshared_obj.sysdeps.common -endif ssp.o: CFLAGS += $(SSP_DISABLE_FLAGS) ssp-local.o: CFLAGS += $(SSP_DISABLE_FLAGS) +endif OBJS = $(patsubst %.c,%.o, $(SRCS)) |