diff options
author | 2008-09-07 19:22:03 +0000 | |
---|---|---|
committer | 2008-09-07 19:22:03 +0000 | |
commit | 9bf99271e45148c5fdbffb331973b8c81840e5bc (patch) | |
tree | 9d53d1efbc651b761d443824e6ec9d7e2418ee42 | |
parent | update wireless synopsis too: nwid requires an argument, chan does not; (diff) | |
download | wireguard-openbsd-9bf99271e45148c5fdbffb331973b8c81840e5bc.tar.xz wireguard-openbsd-9bf99271e45148c5fdbffb331973b8c81840e5bc.zip |
allow PICFLAG to be overridden; ok kettenis drahn
-rw-r--r-- | share/mk/bsd.own.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index 09af359039e..6816ee9036c 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.own.mk,v 1.99 2008/03/28 17:10:57 drahn Exp $ +# $OpenBSD: bsd.own.mk,v 1.100 2008/09/07 19:22:03 deraadt Exp $ # $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $ # Host-specific overrides @@ -122,9 +122,9 @@ NOPIC= # pic relocation flags. .if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "sparc64") -PICFLAG=-fPIC +PICFLAG?=-fPIC .else -PICFLAG=-fpic +PICFLAG?=-fpic . if ${MACHINE_ARCH} == "m68k" # Function CSE makes gas -k not recognize external function calls as lazily # resolvable symbols, thus sometimes making ld.so report undefined symbol |