aboutsummaryrefslogtreecommitdiff
path: root/src/libfetchers
diff options
context:
space:
mode:
authorQyriad <qyriad@qyriad.me>2024-07-21 13:15:30 -0600
committerQyriad <qyriad@qyriad.me>2024-07-24 17:21:40 +0000
commit8d12e0fbb7306cbc58b12ef051d7067d703738de (patch)
treedaa5aecbda8ff9227039cac279f8635f12cb470e /src/libfetchers
parent53f3e39815c3357c6465963359e94a6318b54af7 (diff)
fix building with Musl, fixing static builds
Musl stdout macro expands¹ to something that isn't a valid identifier, so we get syntax errors when compiling usage of a method called stdout with Musl's stdio.h. [1]: https://git.musl-libc.org/cgit/musl/tree/include/stdio.h?id=ab31e9d6a0fa7c5c408856c89df2dfb12c344039#n67 Change-Id: I10e6f6a49504399bf8edd59c5d9e4e62449469e8
Diffstat (limited to 'src/libfetchers')
-rw-r--r--src/libfetchers/git.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libfetchers/git.cc b/src/libfetchers/git.cc
index 81c579e84..9fd8d7bbf 100644
--- a/src/libfetchers/git.cc
+++ b/src/libfetchers/git.cc
@@ -695,7 +695,7 @@ struct GitInputScheme : InputScheme
});
Finally const _wait([&] { proc.wait(); });
- unpackTarfile(*proc.stdout(), tmpDir);
+ unpackTarfile(*proc.getStdout(), tmpDir);
}
auto storePath = store->addToStore(name, tmpDir, FileIngestionMethod::Recursive, htSHA256, filter);