From d9dd50d74c282aefcb89ca922523916b88a6236f Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sun, 20 Aug 2017 04:03:36 -0400 Subject: fix not propagating parseh aliases through pub use decls --- std/build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'std') 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| { -- cgit v1.2.3