build: Make sure autoreconf -fvi is able to reconf tarballs. Fixes #187
This commit is contained in:
parent
2f0d48abe1
commit
8f8af188fb
|
@ -17,5 +17,4 @@ automake_libdir="$(automake --print-libdir)"
|
|||
mkdir -p build-aux
|
||||
cp "${automake_libdir}/install-sh" build-aux
|
||||
|
||||
autoconf
|
||||
( cd toolchain-detect && autoconf )
|
||||
autoreconf -fvi
|
||||
|
|
|
@ -3,6 +3,7 @@ AC_INIT([Limine], m4_esyscmd([./version.sh]), [https://github.com/limine-bootloa
|
|||
AC_PREREQ(2.69)
|
||||
|
||||
AC_CONFIG_AUX_DIR([build-aux])
|
||||
AC_CONFIG_SUBDIRS([toolchain-detect])
|
||||
|
||||
SRCDIR="$(cd "$srcdir" && pwd -P)"
|
||||
BUILDDIR="$(pwd -P)"
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
#! /bin/sh
|
||||
|
||||
exit 0
|
Loading…
Reference in New Issue