summaryrefslogtreecommitdiff
path: root/server/autobuild
diff options
context:
space:
mode:
authorJimmy Yuen Ho Wong <wyuenho@users.noreply.github.com>2022-07-14 09:04:19 +0100
committerVedang Manerikar <ved.manerikar@gmail.com>2022-07-15 05:26:29 +0530
commit386dca5b2d078ba691eefe230478a440ee1f7b16 (patch)
treeb5671ea62f0c86aac3ff5e8360a822b9d7120d4d /server/autobuild
parentfe42da60ad68e806af1677210249caccd7b99451 (diff)
Make sure autoconf is install on macOS so autoreconf may run
Diffstat (limited to 'server/autobuild')
-rwxr-xr-xserver/autobuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/autobuild b/server/autobuild
index 19dff59..1dcdff0 100755
--- a/server/autobuild
+++ b/server/autobuild
@@ -349,7 +349,7 @@ os_macos() {
elif which brew >/dev/null 2>&1; then
PKGCMD=brew
PKGARGS=install
- PACKAGES="pkg-config poppler automake"
+ PACKAGES="pkg-config poppler autoconf automake"
PKG_INSTALL_AS_ROOT=
# brew installs libffi as keg-only, meaning we need to set
# PKG_CONFIG_PATH manually so configure can find it
@@ -357,7 +357,7 @@ os_macos() {
elif which port >/dev/null 2>&1; then
PKGCMD=port
PKGARGS=install
- PACKAGES="pkgconfig poppler automake libpng"
+ PACKAGES="pkgconfig poppler autoconf automake libpng"
else
return 1
fi