diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-12-21 06:17:30 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-12-21 06:17:30 +0000 |
commit | 9165cd5dd8d8c343d9fbf5509e7bb854f03fa01d (patch) | |
tree | 6dd5f0381322b383c075239af5d3d21ee8e8b9bf /usr.bin | |
parent | 046e9c088a1df00db9cafc427ec35a2110a6e6dc (diff) |
the gcc bug seems to have been fixed...
ok miod
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/sort/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/usr.bin/sort/Makefile b/usr.bin/sort/Makefile index caa71895730..8fbeacdc25e 100644 --- a/usr.bin/sort/Makefile +++ b/usr.bin/sort/Makefile @@ -1,11 +1,6 @@ -# $OpenBSD: Makefile,v 1.4 2012/09/10 04:03:34 deraadt Exp $ +# $OpenBSD: Makefile,v 1.5 2012/12/21 06:17:29 deraadt Exp $ PROG= sort SRCS= append.c fields.c files.c fsort.c init.c msort.c sort.c tmp.c -# Work around gcc optimization bug on sh -.if (${MACHINE_ARCH} == sh) -COPTS+= -O0 -.endif - .include <bsd.prog.mk> |