diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-12-16 13:01:44 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-12-16 13:01:44 +0000 |
commit | f6c9394ef5ec986dcdc039f0740a0a973e7ab562 (patch) | |
tree | adcb3598dd2969176efba9d94cca410f472b4a48 | |
parent | 941d72a7acff61e470f4e4b2bf37ef2271ce3252 (diff) | |
download | aports-f6c9394ef5ec986dcdc039f0740a0a973e7ab562.tar.bz2 aports-f6c9394ef5ec986dcdc039f0740a0a973e7ab562.tar.xz |
testing/libguess,audacious*: build fix workaround for bb bug
-rw-r--r-- | testing/audacious-plugins/APKBUILD | 4 | ||||
-rw-r--r-- | testing/audacious/APKBUILD | 4 | ||||
-rw-r--r-- | testing/libguess/APKBUILD | 7 |
3 files changed, 15 insertions, 0 deletions
diff --git a/testing/audacious-plugins/APKBUILD b/testing/audacious-plugins/APKBUILD index 30817e149a..9183f6b183 100644 --- a/testing/audacious-plugins/APKBUILD +++ b/testing/audacious-plugins/APKBUILD @@ -46,6 +46,10 @@ prepare() { ;; esac done + + # workaround bug in busybox + sed -e "/touch/s/0001010000/200001010000/g" \ + -i configure } build() { diff --git a/testing/audacious/APKBUILD b/testing/audacious/APKBUILD index d503bec5d0..b92bc582aa 100644 --- a/testing/audacious/APKBUILD +++ b/testing/audacious/APKBUILD @@ -27,6 +27,10 @@ prepare() { ;; esac done + + # workaround bug in busybox + sed -e "/touch/s/0001010000/200001010000/g" \ + -i configure } build() { diff --git a/testing/libguess/APKBUILD b/testing/libguess/APKBUILD index 92b7482e33..a967cdda76 100644 --- a/testing/libguess/APKBUILD +++ b/testing/libguess/APKBUILD @@ -15,6 +15,13 @@ source="http://distfiles.atheme.org/$pkgname-$pkgver.tgz" _builddir="$srcdir"/$pkgname-$pkgver +prepare() { + cd "$_builddir" + # workaround bug in busybox + sed -e "/touch/s/0001010000/200001010000/g" \ + -i configure +} + build() { cd "$_builddir" ./configure --prefix=/usr \ |