• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2# This library is free software; you can redistribute it and/or
3# modify it under the terms of the GNU Lesser General Public
4# License as published by the Free Software Foundation version 2.1
5# of the License.
6#
7# Copyright(c) 2023 Huawei Device Co., Ltd.
8
9set -e
10cd $1
11if [ -d "libnl" ];then
12    rm -rf libnl
13fi
14tar xvf libnl-libnl3_11_0.tar.gz
15mv libnl-libnl3_11_0 libnl
16cd $1/libnl
17apt-get update
18apt-get install autoconf automake libtool -y
19./autogen.sh
20./configure
21patch -p1 < $1/solve-oh-compile-problem3_11_0.patch --fuzz=0 --no-backup-if-mismatch
22exit 0
23