artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
64451c6
)
Don't use -fpic if NOPIC defined. From Dale Rahn.
author
niklas
<niklas@openbsd.org>
Tue, 5 Mar 1996 07:55:33 +0000
(07:55 +0000)
committer
niklas
<niklas@openbsd.org>
Tue, 5 Mar 1996 07:55:33 +0000
(07:55 +0000)
lib/csu/c++/Makefile
patch
|
blob
|
history
diff --git
a/lib/csu/c++/Makefile
b/lib/csu/c++/Makefile
index
60b0380
..
7a0c8ce
100644
(file)
--- a/
lib/csu/c++/Makefile
+++ b/
lib/csu/c++/Makefile
@@
-1,6
+1,9
@@
-# $
Id: Makefile,v 1.1.1.1 1995/10/18 08:41:17 deraadt
Exp $
+# $
OpenBSD: Makefile,v 1.2 1996/03/05 07:55:33 niklas
Exp $
-CFLAGS+= -DLIBC_SCCS -fpic
+CFLAGS+= -DLIBC_SCCS
+.if !defined(NOPIC)
+CFLAGS+= -fpic
+.endif
OBJS= c++rt0.o
all: ${OBJS}