summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorEinhard Leichtfuß2021-06-30 03:37:41 +0200
committerEinhard Leichtfuß2021-06-30 03:37:41 +0200
commit66465cc8ec6f9c8cf6494036491a42566d292dee (patch)
tree125ebfd75a8009ebba0c2effc1e583809e49dc65
parentff8b7a7d9c2bc3ac9f26a30d97b310bd4d3c7a2b (diff)
downloadaur-66465cc8ec6f9c8cf6494036491a42566d292dee.tar.gz
Explicitly call autotools and ./configure
./autogen.sh did more than needed, and added some unnecessary flags to ./configure.
-rw-r--r--PKGBUILD9
1 files changed, 7 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 905e2a503dd1..64db2256d3e6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -85,9 +85,14 @@ prepare()
build() {
cd "WordNet-${_debver}"
- # Note: `./autogen.sh' passes arguments on to `./configure'.
+ # See also `./autogen.sh'.
libtoolize
- ./autogen.sh
+ aclocal
+ autoheader
+ automake --add-missing
+ autoconf
+
+ ./configure
# The make structure does not facilitate building parts only.