aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--make.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/make.c b/make.c
index afc1a06..1b48bbd 100644
--- a/make.c
+++ b/make.c
@@ -171,7 +171,7 @@ work(void *p)
else
env_or_default(&sv, "CFLAGS", CFLAGS_DBG);
cmdaddv(&c, sv.buf, sv.len);
- cmdadd(&c, CFLAGS_ALL, "-Iinclude", "-fPIC", "-o", dst, "-c", src);
+ cmdadd(&c, CFLAGS_ALL, "-fPIC", "-o", dst, "-c", src);
fprintf(stderr, "CC\t%s\n", dst);
CMDRC(c);
}