summaryrefslogtreecommitdiff
path: root/packages/iproute2/build.sh
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2023-02-15 19:06:08 +0100
committerGitHub <noreply@github.com>2023-02-15 19:06:08 +0100
commit6987aa10a600a2d1b0d498607ebaafc799739aaa (patch)
treedbea4c06d84d86a14a75a0dd13a2cae3530bbb8b /packages/iproute2/build.sh
parent5207b6f510d67762eb7ae9d5394c68ded65d7905 (diff)
parentb4a10607bb847c08d91f1ab28485db78feca7597 (diff)
downloadvyos-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-xpackages/iproute2/build.sh20
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