summaryrefslogtreecommitdiff
path: root/libexpat/build.sh
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2020-02-19 09:58:41 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2020-02-19 09:58:41 -0500
commit78f1078c2ae632d9fe89ea0f9bc7f1e84e7e6135 (patch)
treec13947810c09a7f4a7b5f6a4c5035f95b3c2bd2d /libexpat/build.sh
parent1ba128480b3fa4cdf848faed2b5f6d21df8b949d (diff)
downloadspm_packages-78f1078c2ae632d9fe89ea0f9bc7f1e84e7e6135.tar.gz
Use autoreconf
Diffstat (limited to 'libexpat/build.sh')
-rw-r--r--libexpat/build.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/libexpat/build.sh b/libexpat/build.sh
index d545ada..ccb636c 100644
--- a/libexpat/build.sh
+++ b/libexpat/build.sh
@@ -9,6 +9,8 @@ build_depends=(
"autoconf"
"automake"
"libtool"
+ "m4"
+ "gettext"
)
depends=()
@@ -19,7 +21,7 @@ function prepare() {
}
function build() {
- ./buildconf.sh
+ autoreconf -i
./configure --prefix="${_prefix}" \
--libdir="${_prefix}/lib"
make -j${_maxjobs}