From 1c2f8577ce1acf4b16371f61fe9a4cc2e53b7869 Mon Sep 17 00:00:00 2001 From: Thomas Adam Date: Fri, 10 Mar 2023 22:46:56 +0000 Subject: [PATCH] portable: autogen: remove AUTO{MAKE,CONF}_VERSION When running the bootstrapping shell script autogen.sh, no longer set the AUTO{MAKE,CONF}_VERSION env vars. Although these were guarded and only set to default values on OpenBSD if they weren't already set, these should ideally be set by individual users on OpenBSD themselves. Different versions of OpenBSD could well have different versions. --- autogen.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/autogen.sh b/autogen.sh index 0cc503bf..af198ec9 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,11 +1,5 @@ #!/bin/sh -if [ "x$(uname)" = "xOpenBSD" ]; then - [ -z "$AUTOMAKE_VERSION" ] && export AUTOMAKE_VERSION=1.16 - [ -z "$AUTOCONF_VERSION" ] && export AUTOCONF_VERSION=2.69 -fi - - die() { echo "$1" >&2 -- 2.11.4.GIT