diff options
-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 \ |