diff options
author | Christian Breunig <christian@breunig.cc> | 2023-02-15 19:06:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-15 19:06:08 +0100 |
commit | 6987aa10a600a2d1b0d498607ebaafc799739aaa (patch) | |
tree | dbea4c06d84d86a14a75a0dd13a2cae3530bbb8b /packages/iproute2/build.sh | |
parent | 5207b6f510d67762eb7ae9d5394c68ded65d7905 (diff) | |
parent | b4a10607bb847c08d91f1ab28485db78feca7597 (diff) | |
download | vyos-build-6987aa10a600a2d1b0d498607ebaafc799739aaa.tar.gz vyos-build-6987aa10a600a2d1b0d498607ebaafc799739aaa.zip |
Merge pull request #306 from sarthurdev/bookworm
debian: T5003: Upgrade base system to Debian 12 "Bookworm"
Diffstat (limited to 'packages/iproute2/build.sh')
-rwxr-xr-x | packages/iproute2/build.sh | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/packages/iproute2/build.sh b/packages/iproute2/build.sh deleted file mode 100755 index 09babb95..00000000 --- a/packages/iproute2/build.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh -CWD=$(pwd) -set -e - -SRC=iproute2 -if [ ! -d ${SRC} ]; then - echo "Source directory does not exists, please 'git clone'" - exit 1 -fi - -cd ${SRC} -PATCH_DIR=${CWD}/patches -for patch in $(ls ${PATCH_DIR}) -do - echo "I: Apply patch: ${PATCH_DIR}/${patch}" - patch -p1 < ${PATCH_DIR}/${patch} -done - -echo "I: Build Debian Package" -dpkg-buildpackage -uc -us -tc -b -d |