diff options
author | Bartłomiej Piotrowski <b@bpiotrowski.pl> | 2013-10-05 15:18:47 +0200 |
---|---|---|
committer | Bartłomiej Piotrowski <b@bpiotrowski.pl> | 2013-10-05 15:18:47 +0200 |
commit | 881f9846acf58415d71d3e0bce87e5e5d7dec72c (patch) | |
tree | aaf09cc6b372b3ef0de3eda1e9ca2675cc142385 /main/mesa | |
parent | 527ddb298695d0b355a3b58d79fb48807179ad20 (diff) | |
download | aports-881f9846acf58415d71d3e0bce87e5e5d7dec72c.tar.bz2 aports-881f9846acf58415d71d3e0bce87e5e5d7dec72c.tar.xz |
main/mesa: run autoreconf before anything
Diffstat (limited to 'main/mesa')
-rw-r--r-- | main/mesa/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/mesa/APKBUILD b/main/mesa/APKBUILD index 219c2e9d26..7a9ce107df 100644 --- a/main/mesa/APKBUILD +++ b/main/mesa/APKBUILD @@ -42,7 +42,8 @@ esac prepare() { cd "$_builddir" - update_config_sub || return 1 + autoreconf -vfi || return 1 + #update_config_sub || return 1 for i in $source; do case $i in *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; |