summaryrefslogtreecommitdiffstats
path: root/alpine
diff options
context:
space:
mode:
authorChristian Franke <chris@opensourcerouting.org>2019-03-26 15:46:51 +0100
committerChristian Franke <chris@opensourcerouting.org>2019-03-26 18:33:10 +0100
commita4926e467ecd53ebf06793969838d063228b7744 (patch)
treeba7e6f535169461cdd4aaf1012889cf59699aeb6 /alpine
parentalpine/APKBUILD.in: Add libyang-dev dependency, drop binutils-libs (diff)
downloadfrr-a4926e467ecd53ebf06793969838d063228b7744.tar.xz
frr-a4926e467ecd53ebf06793969838d063228b7744.zip
alpine/APKBUILD.in: Don't include daemons from srcdir
The daemons file will be generated during the build, so there is no need to copy it over from the first stage.
Diffstat (limited to 'alpine')
-rw-r--r--alpine/APKBUILD.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/alpine/APKBUILD.in b/alpine/APKBUILD.in
index 340c91c17..0f56a427d 100644
--- a/alpine/APKBUILD.in
+++ b/alpine/APKBUILD.in
@@ -23,7 +23,7 @@ makedepends="ncurses-dev net-snmp-dev gawk texinfo perl
checkdepends="pytest py-setuptools"
install="$pkgname.pre-install $pkgname.pre-deinstall $pkgname.post-deinstall"
subpackages="$pkgname-dev $pkgname-doc $pkgname-dbg"
-source="$pkgname-$pkgver.tar.gz docker-start daemons"
+source="$pkgname-$pkgver.tar.gz"
builddir="$srcdir"/$pkgname-$pkgver
@@ -60,7 +60,7 @@ package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
- install -Dm644 "$srcdir"/daemons "$pkgdir"$_sysconfdir
+ install -Dm644 "$builddir"/tools/etc/frr/daemons "$pkgdir"$_sysconfdir
install -d "$pkgdir"/etc/init.d
ln -s ${_sbindir}/frr "$pkgdir"/etc/init.d/frr
}