@zigc/lib 0.17.0-dev.296 → 0.17.0-dev.298

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zigc/lib",
3
- "version": "0.17.0-dev.296",
3
+ "version": "0.17.0-dev.298",
4
4
  "description": "Zig standard library and libc headers (shared across all platforms)",
5
5
  "repository": {
6
6
  "type": "git",
@@ -146,9 +146,6 @@ fn detectFromInstallation(arena: Allocator, target: *const std.Target, lci: *con
146
146
  const path = try std.fs.path.join(arena, &[_][]const u8{ include_dir_path, subdir });
147
147
  try list.append(path);
148
148
  }
149
-
150
- const config_dir = try std.fs.path.join(arena, &[_][]const u8{ include_dir_path, "config" });
151
- try list.append(config_dir);
152
149
  }
153
150
 
154
151
  var sysroot: ?[]const u8 = null;