From dcd59daaca4f9c6efad6d6d03e8b0a4b7d591de7 Mon Sep 17 00:00:00 2001 From: mintsuki Date: Wed, 15 Jun 2022 02:34:28 +0200 Subject: [PATCH] build: Make bootstrap not call configure --- bootstrap | 8 -------- 1 file changed, 8 deletions(-) diff --git a/bootstrap b/bootstrap index 4b0a6762..8d5bd400 100755 --- a/bootstrap +++ b/bootstrap @@ -2,8 +2,6 @@ set -ex -origdir="$(pwd -P)" - srcdir="$(dirname "$0")" test -z "$srcdir" && srcdir=. @@ -18,9 +16,3 @@ mkdir -p build-aux cp "${automake_libdir}/install-sh" build-aux autoconf - -cd "$origdir" - -if test -z "$NOCONFIGURE"; then - exec "$srcdir"/configure "$@" -fi