diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-12-19 19:07:35 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-12-19 19:07:35 +0000 |
commit | 15c1698e444e5e4c4afcc98ea9836b2f9eecd464 (patch) | |
tree | e43dc1e89048f5d28010233ad6aef79bea3c413e /share/mk/bsd.prog.mk | |
parent | c08ef7e452fdca8b5bd1bedc37bb7a9c0fe6c486 (diff) |
add PIPE variable, suitable for /etc/mk.conf, to enable gcc -pipe mode
Diffstat (limited to 'share/mk/bsd.prog.mk')
-rw-r--r-- | share/mk/bsd.prog.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/mk/bsd.prog.mk b/share/mk/bsd.prog.mk index 13c90fa89cc..adcbc26a7be 100644 --- a/share/mk/bsd.prog.mk +++ b/share/mk/bsd.prog.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.prog.mk,v 1.16 1998/07/27 21:11:33 niklas Exp $ +# $OpenBSD: bsd.prog.mk,v 1.17 1998/12/19 19:07:34 millert Exp $ # $NetBSD: bsd.prog.mk,v 1.55 1996/04/08 21:19:26 jtc Exp $ # @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91 @@ -10,7 +10,7 @@ .SUFFIXES: .out .o .c .cc .C .cxx .y .l .s .8 .7 .6 .5 .4 .3 .2 .1 .0 -CFLAGS+= ${COPTS} +CFLAGS+= ${COPTS} ${PIPE} .if (${MACHINE_ARCH} == "powerpc") CRTBEGIN?= ${DESTDIR}/usr/lib/crtbegin.o |