summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-02-27 17:04:22 +0000
committerEric Andersen <andersen@codepoet.org>2003-02-27 17:04:22 +0000
commitd4d6e2c50565da18253cd0d6f3332484142b6587 (patch)
tree87aa1c9e62b7d7daf3a327f3cf5316ba7120e7bf /test
parent212f984443cdaacfb36661f7fedf73c9285d0d08 (diff)
Fix a silly bug
Diffstat (limited to 'test')
-rw-r--r--test/Rules.mak4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Rules.mak b/test/Rules.mak
index df00cae56..42c8cdd33 100644
--- a/test/Rules.mak
+++ b/test/Rules.mak
@@ -75,11 +75,11 @@ LDFLAGS=--uclibc-use-build-dir
ifeq ($(DODEBUG),true)
CFLAGS+=-g
GLIBC_CFLAGS+=-g
- LDFLAGS = -g -Wl,-warn-common
+ LDFLAGS += -g -Wl,-warn-common
GLIBC_LDFLAGS =-g -Wl,-warn-common
STRIPTOOL =true -Since_we_are_debugging
else
- LDFLAGS =-s -Wl,-warn-common
+ LDFLAGS +=-s -Wl,-warn-common
GLIBC_LDFLAGS =-s -Wl,-warn-common
STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
endif