summaryrefslogtreecommitdiff
path: root/Rules.mak
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-11-04 04:37:24 +0000
committerEric Andersen <andersen@codepoet.org>2000-11-04 04:37:24 +0000
commite547d07a488ab17397217e2a57594c78bf747373 (patch)
tree27ff5a616a1a4c6172cceb824be19e609b5d80a1 /Rules.mak
parentcb9fa11843a7ea4a353a1a9954c8e054b35332b2 (diff)
More cleanups. Fix things so tinylogin compiles.
Fix a bug in getdelim -- patch from David Whedon <dwhedon@gordian.com>.
Diffstat (limited to 'Rules.mak')
-rw-r--r--Rules.mak4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rules.mak b/Rules.mak
index de53f9420..419f25bbb 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -41,10 +41,10 @@ CFLAGS=$(ARCH_CFLAGS) $(CCFLAGS) $(DEFS)
ifeq ($(DODEBUG),true)
CFLAGS += -Wall -g
- LDFLAGS = -nostdlib
+ LDFLAGS = -nostdlib -Wl,-warn-common
else
CFLAGS += -Wall #-fomit-frame-pointer
- LDFLAGS = -s -nostdlib
+ LDFLAGS = -s -nostdlib -Wl,-warn-common
endif
ifndef $(PREFIX)