summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2017-07-05 11:00:37 +0100
committerSam Thursfield <sam.thursfield@codethink.co.uk>2017-07-05 11:00:37 +0100
commit8dc8a3ecba70501fbe0ad1e1abf614cab34d4948 (patch)
tree4ff9c29042ee15554a5e98be7491bcd149e6cc25
parented62ffd5229e90893ed5854dbc60368bcb8ddf9f (diff)
downloadbuildstream-8dc8a3ecba70501fbe0ad1e1abf614cab34d4948.tar.gz
build-all.sh.in: Fix typo `ldcondig` -> `ldconfig`
In some cases executing ldconfig can fail (for example, musl libc provides an `ldconfig` that behaves the same as `false`) so we do need to ignore the return code when running it. However that does make it easier to overlook mistakes such as this one!
-rwxr-xr-xbuildstream/data/build-all.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/data/build-all.sh.in b/buildstream/data/build-all.sh.in
index 2d343ca0e..bf5c9f880 100755
--- a/buildstream/data/build-all.sh.in
+++ b/buildstream/data/build-all.sh.in
@@ -33,7 +33,7 @@ for module in {modules}; do
"$SRCDIR/build-$module"
if [ -e /sbin/ldconfig ]; then
- /sbin/ldcondig || true;
+ /sbin/ldconfig || true;
fi
done