diff options
author | Sam Thursfield <sam.thursfield@codethink.co.uk> | 2017-07-05 11:00:37 +0100 |
---|---|---|
committer | Sam Thursfield <sam.thursfield@codethink.co.uk> | 2017-07-05 11:00:37 +0100 |
commit | 8dc8a3ecba70501fbe0ad1e1abf614cab34d4948 (patch) | |
tree | 4ff9c29042ee15554a5e98be7491bcd149e6cc25 /buildstream/data/build-all.sh.in | |
parent | ed62ffd5229e90893ed5854dbc60368bcb8ddf9f (diff) | |
download | buildstream-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!
Diffstat (limited to 'buildstream/data/build-all.sh.in')
-rwxr-xr-x | buildstream/data/build-all.sh.in | 2 |
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 |