diff options
author | Linux User <ncopa@ncopa-edge-armhf.local> | 2016-12-28 11:42:47 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-12-28 12:45:40 +0100 |
commit | b89ca2397c11c50fa476e969e011c77939b741fb (patch) | |
tree | 04d14c0115a1953c9afe47b36ccf35a05b342224 | |
parent | 67284a3ab92f22e8bfde3157fbc8fb48cdb3e39e (diff) | |
download | aports-b89ca2397c11c50fa476e969e011c77939b741fb.tar.bz2 aports-b89ca2397c11c50fa476e969e011c77939b741fb.tar.xz |
community/ucspi-tcp6: fix build on armhf
the conf-cc and conf-ld sems to be in the top level dir
-rw-r--r-- | community/ucspi-tcp6/APKBUILD | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/community/ucspi-tcp6/APKBUILD b/community/ucspi-tcp6/APKBUILD index a3e487e09f..817ba15fa3 100644 --- a/community/ucspi-tcp6/APKBUILD +++ b/community/ucspi-tcp6/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Stuart Cardall <developer@it-offshore.co.uk> pkgname=ucspi-tcp6 pkgver=1.03 -pkgrel=0 +pkgrel=1 pkgdesc="IPv6 enabled ucspi-tcp superserver" url="http://www.fehcom.de/ipnet/ucspi-tcp6.html" arch="all" @@ -17,13 +17,13 @@ source="http://www.fehcom.de/ipnet/$pkgname/$pkgname-$pkgver.tgz" builddir="$srcdir"/host/$pkgname-${pkgver%%[a-zA-Z]} build() { - cd "$builddir/src" + cd "$builddir" echo "${CC:-"gcc"} $CFLAGS" > conf-cc echo "${CC:-"gcc"} $LDFLAGS" > conf-ld - echo "/usr" > home + echo "/usr" > src/home - make || return 1 + make -C src || return 1 } package() { |