summaryrefslogtreecommitdiffstats
path: root/packaging/rpm/rpmbuild.sh
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/rpm/rpmbuild.sh')
-rwxr-xr-xpackaging/rpm/rpmbuild.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/packaging/rpm/rpmbuild.sh b/packaging/rpm/rpmbuild.sh
deleted file mode 100755
index 5e8ab6e7a..000000000
--- a/packaging/rpm/rpmbuild.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-set -xe
-DIR=$(dirname $0)
-DIR=$(readlink -f $DIR)
-ZIPDIR=${DIR}/../../vpp-integration/minimal-distribution/target/
-ZIPFILE=${ZIPDIR}/vpp-integration-distribution-1.16.12-SNAPSHOT-hc.zip
-mkdir -p ${DIR}/SOURCES/
-cp $ZIPFILE ${DIR}/SOURCES/
-cp ${DIR}/honeycomb.spec ${DIR}/SOURCES/
-cd ${DIR}
-rpmbuild -bb --define "_topdir ${DIR}" ${DIR}/honeycomb.spec
-cd -
-