From cf01b03da9d3afe6aec664c067c845ce4e87e93b Mon Sep 17 00:00:00 2001 From: hgdagon Date: Mon, 14 Mar 2022 23:18:07 -0700 Subject: [PATCH] Moved configure to build --- mingw-w64-libxmp/PKGBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mingw-w64-libxmp/PKGBUILD b/mingw-w64-libxmp/PKGBUILD index 1b29af6e6b..7656d28845 100644 --- a/mingw-w64-libxmp/PKGBUILD +++ b/mingw-w64-libxmp/PKGBUILD @@ -19,12 +19,13 @@ prepare() { [[ -d ${srcdir}/build-${MINGW_CHOST} ]] && rm -rf ${srcdir}/build-${MINGW_CHOST} mv ${srcdir}/${_realname}-${_realname}-${pkgver} ${srcdir}/build-${MINGW_CHOST} && cd ${srcdir}/build-${MINGW_CHOST} autoconf -W none - ./configure --enable-static } build() { cd ${srcdir}/build-${MINGW_CHOST} + ./configure --enable-static + make make docs/libxmp.3 }