mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-31 09:00:13 +01:00
build: silence message in "tools/create-exports-NetworkManager.sh" about missing directory
When building with meson -Dppp=false, the following message is printed during build: [623/671] Generating NetworkManager.ver with a custom command. find: ‘./src/ppp/’: No such file or directory The message is harmless. Hide it. https://gitlab.freedesktop.org/NetworkManager/NetworkManager/issues/43
This commit is contained in:
parent
23e001fec7
commit
15857ad958
1 changed files with 2 additions and 2 deletions
|
|
@ -53,8 +53,8 @@ EOF
|
|||
|
||||
get_symbols_missing() {
|
||||
(for f in $(find ./src/settings/plugins/*/${libs} \
|
||||
./src/devices/*/${libs} \
|
||||
./src/ppp/${libs} -name '*.so'); do
|
||||
./src/devices/*/${libs} \
|
||||
./src/ppp/${libs} -name '*.so' 2>/dev/null); do
|
||||
call_nm "$f" |
|
||||
sed -n 's/^\([U]\) \(\(nm_\|nmp_\|_nm\|NM\|_NM\|c_siphash_\).*\)$/\2/p'
|
||||
done) |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue