diff options
| author | David Lönnhager <david.l@mullvad.net> | 2025-01-15 09:50:02 +0100 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2025-01-24 17:35:03 +0100 |
| commit | ff91a94156ec0cda2c99767eb53ae3d7d647d324 (patch) | |
| tree | 354da80be7253bb37cb53cb9cc068f5ac7346ea5 | |
| parent | 938f8e2d343cb0e60de58575b9ba2fc415f3f896 (diff) | |
| download | mullvadvpn-ff91a94156ec0cda2c99767eb53ae3d7d647d324.tar.xz mullvadvpn-ff91a94156ec0cda2c99767eb53ae3d7d647d324.zip | |
Fix comments in wireguard-go-rs
| -rw-r--r-- | wireguard-go-rs/build.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/wireguard-go-rs/build.rs b/wireguard-go-rs/build.rs index 235cadbb5e..6d7d82dad2 100644 --- a/wireguard-go-rs/build.rs +++ b/wireguard-go-rs/build.rs @@ -294,7 +294,6 @@ fn find_file( let path = entry.path(); if path.is_dir() { if let Some(result) = find_file(&path, condition)? { - // TODO: distinguish between err and no result return Ok(Some(result)); } } @@ -313,7 +312,7 @@ fn find_msbuild_exe() -> anyhow::Result<PathBuf> { .context("msbuild.exe not found in PATH") } -/// Generate exports.def from wireguard-go source +/// Generate lib from export fn generate_lib_from_exports_def(arch: Arch, exports_path: impl AsRef<Path>) -> anyhow::Result<()> { let lib_path = exports_path .as_ref() |
