diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-02-19 09:58:41 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-02-19 09:58:41 -0500 |
commit | 78f1078c2ae632d9fe89ea0f9bc7f1e84e7e6135 (patch) | |
tree | c13947810c09a7f4a7b5f6a4c5035f95b3c2bd2d /libexpat/build.sh | |
parent | 1ba128480b3fa4cdf848faed2b5f6d21df8b949d (diff) | |
download | spm_packages-78f1078c2ae632d9fe89ea0f9bc7f1e84e7e6135.tar.gz |
Use autoreconf
Diffstat (limited to 'libexpat/build.sh')
-rw-r--r-- | libexpat/build.sh | 4 |
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} |