mirror of
https://github.com/openharmony/third_party_libnl.git
synced 2026-07-19 20:13:35 -04:00
fd301b6196
fix: libnl codex bug BREAKING CHANGE: extends key in config file is now used for extending other config files style:modify libnl driver style docs:NA test:NA Signed-off-by: YOUR_NAME <xusai4@huawei.com>
18 lines
416 B
Bash
Executable File
18 lines
416 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License as published by the Free Software Foundation version 2.1
|
|
# of the License.
|
|
#
|
|
# Copyright(c) 2022 Huawei Device Co., Ltd.
|
|
|
|
sudo apt-get install autoconf
|
|
sudo apt-get install libtool
|
|
sudo apt-get install pkg-config
|
|
./autogen.sh
|
|
./configure
|
|
make
|
|
|
|
exit 0
|