aboutsummaryrefslogtreecommitdiff
path: root/driver.c
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-02-12 15:34:03 -0800
committerMichael Forney <mforney@mforney.org>2019-02-12 15:34:03 -0800
commit6ba43e59163b71b0f6770db008d030d13ced2623 (patch)
tree292f22903a979321d2e3cd2ee11fe6badcf86c25 /driver.c
parentbf348610b7e133e7b06b7f0275509d77adf17a38 (diff)
driver: Ignore -pipe flag
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/driver.c b/driver.c
index 01f2225..fee1954 100644
--- a/driver.c
+++ b/driver.c
@@ -334,6 +334,8 @@ main(int argc, char *argv[])
usage();
arrayaddptr(&phases[PREPROCESS].cmd, "-include");
arrayaddptr(&phases[PREPROCESS].cmd, arg);
+ } else if (strcmp(arg, "-pipe") == 0) {
+ /* ignore */
} else {
if (arg[2] != '\0' && strchr("cESs", arg[1]))
usage();