This repository has been archived on 2025-03-20. You can view files and clone it, but cannot push or open issues or pull requests.
sonic-buildimage/src/libnl3/build.sh
2016-09-27 16:50:29 -07:00

24 lines
393 B
Bash
Executable File

#!/bin/bash
## This script is to build the libnl3 3.2.27-1
##
## USAGE:
## ./build.sh
# Obtaining the libnl3
rm -rf ./libnl3
git clone https://anonscm.debian.org/git/collab-maint/libnl3.git
pushd ./libnl3
git checkout -f b77c0e49cb
# Patch
export QUILT_PATCHES=debian/patches
quilt push
quilt push
quilt push
quilt push
quilt push
dpkg-buildpackage -rfakeroot -b -us -uc
popd
cp *.deb ..