From 20b1f085be08f8b3444e9ac8bb8b1eaa9e73e0da Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Mon, 26 Aug 2024 21:29:03 +0200 Subject: [PATCH] relocatable-prog: Fix config.libpath failure (regression 2024-08-24). * build-aux/config.libpath: Expect 2 arguments, not 1. --- ChangeLog | 5 +++++ build-aux/config.libpath | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1b047696ee..80e771c304 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2024-08-26 Bruno Haible + + relocatable-prog: Fix config.libpath failure (regression 2024-08-24). + * build-aux/config.libpath: Expect 2 arguments, not 1. + 2024-08-26 Bruno Haible Fix compilation errors with clang that masquerades as gcc 13. diff --git a/build-aux/config.libpath b/build-aux/config.libpath index ba0f94426b..a4da78823c 100755 --- a/build-aux/config.libpath +++ b/build-aux/config.libpath @@ -94,10 +94,10 @@ while test $# -gt 0; do esac done -if test $# -gt 1; then +if test $# -gt 2; then func_fatal_error "too many arguments" fi -if test $# -lt 1; then +if test $# -lt 2; then func_fatal_error "too few arguments" fi -- 2.39.5