aboutsummaryrefslogtreecommitdiff
path: root/std
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2017-08-20 04:03:36 -0400
committerAndrew Kelley <superjoe30@gmail.com>2017-08-20 04:03:36 -0400
commitd9dd50d74c282aefcb89ca922523916b88a6236f (patch)
tree56a6f6658059327ad975afbf20f6ace272a98805 /std
parent8e19bdfc797cb419bddb4334e7d81abd382c11d9 (diff)
downloadzig-d9dd50d74c282aefcb89ca922523916b88a6236f.tar.gz
zig-d9dd50d74c282aefcb89ca922523916b88a6236f.zip
fix not propagating parseh aliases through pub use decls
Diffstat (limited to 'std')
-rw-r--r--std/build.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/std/build.zig b/std/build.zig
index 99900a1700..7a40e97f52 100644
--- a/std/build.zig
+++ b/std/build.zig
@@ -979,7 +979,7 @@ pub const LibExeObjStep = struct {
for (builder.include_paths.toSliceConst()) |include_path| {
%%zig_args.append("-isystem");
- %%zig_args.append(include_path);
+ %%zig_args.append(builder.pathFromRoot(include_path));
}
for (builder.rpaths.toSliceConst()) |rpath| {
@@ -1086,7 +1086,7 @@ pub const TestStep = struct {
for (builder.include_paths.toSliceConst()) |include_path| {
%%zig_args.append("-isystem");
- %%zig_args.append(include_path);
+ %%zig_args.append(builder.pathFromRoot(include_path));
}
for (builder.rpaths.toSliceConst()) |rpath| {