summaryrefslogtreecommitdiff
path: root/usr.bin/pcc
diff options
context:
space:
mode:
authorOtto Moerbeek <otto@cvs.openbsd.org>2007-09-16 18:44:57 +0000
committerOtto Moerbeek <otto@cvs.openbsd.org>2007-09-16 18:44:57 +0000
commitc0dd75448fcd63a05c6283b7faf6957a853eedb4 (patch)
treefc3e88086cffaf83ffb2ef6016defaf7a6bccc86 /usr.bin/pcc
parent07b358d6597d3bf69927a04de264d66f635b1202 (diff)
Process (and ignore for now) -pipe
Diffstat (limited to 'usr.bin/pcc')
-rw-r--r--usr.bin/pcc/cc/cc/cc.c4
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 b89ada6b549..3685dcf6faf 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.2 2007/09/15 22:04:38 ray Exp $ */
+/* $OpenBSD: cc.c,v 1.3 2007/09/16 18:44:56 otto Exp $ */
/*
* Copyright(C) Caldera International Inc. 2001-2002. All rights reserved.
*
@@ -215,6 +215,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;