summaryrefslogtreecommitdiff
path: root/lib/csu
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2014-01-14 18:21:38 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2014-01-14 18:21:38 +0000
commit094cd0c5921045409e9bdbb804bd8d630a6477de (patch)
treeb616f24bf8e0d9dfa57c886c9c456141daa2221d /lib/csu
parentde4dcb9672faf93bdf68db9760704674ada38835 (diff)
build crt*S with -fPIC instead of -fpic
Diffstat (limited to 'lib/csu')
-rw-r--r--lib/csu/m68k/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/csu/m68k/Makefile b/lib/csu/m68k/Makefile
index 6a9676e6454..cfab9550cda 100644
--- a/lib/csu/m68k/Makefile
+++ b/lib/csu/m68k/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.9 2013/12/03 06:21:41 guenther Exp $
+# $OpenBSD: Makefile,v 1.10 2014/01/14 18:21:37 miod Exp $
# from: @(#)Makefile 5.5 (Berkeley) 5/21/91
OBJS= crt0.o gcrt0.o crtbegin.o crtend.o crtbeginS.o crtendS.o
@@ -8,7 +8,7 @@ ELFDIR= ${.CURDIR}/../common_elf
.PATH: ${ELFDIR}
CFLAGS+= -I${ELFDIR} -I${.CURDIR}
-PICFLAG= -fpic
+PICFLAG= -fPIC
all: ${OBJS}