diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 2007-09-19 16:08:34 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 2007-09-19 16:08:34 +0000 |
commit | 120c7d69ae39cc612294daa7b9420b246fd3cd71 (patch) | |
tree | 36b34373186a2646dee3932a1b53437974cd20a3 | |
parent | 16e39586d0429c90d19eab24bc7da336a60af544 (diff) |
oops, put back -pipe support
noticed by Mike Belopuhov .. mkb at crypt dot org dot ru, thanks
-rw-r--r-- | usr.bin/pcc/cc/cc/cc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/pcc/cc/cc/cc.c b/usr.bin/pcc/cc/cc/cc.c index 6abb82c7ad4..540b845966f 100644 --- a/usr.bin/pcc/cc/cc/cc.c +++ b/usr.bin/pcc/cc/cc/cc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cc.c,v 1.8 2007/09/19 15:21:07 todd Exp $ */ +/* $OpenBSD: cc.c,v 1.9 2007/09/19 16:08:33 todd Exp $ */ /* * Copyright(C) Caldera International Inc. 2001-2002. All rights reserved. * @@ -239,6 +239,8 @@ main(int argc, char *argv[]) pgflag++; else if (strcmp(argv[i], "-pthread") == 0) pthreads++; + else if (strcmp(argv[i], "-pipe") == 0) + /* NOTHING YET */; else errorx(1, "unknown option %s", argv[i]); break; |