From 7b9fb3ba4da007e2f12bee2589bc05bc4ade507a Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Fri, 16 Sep 2022 13:27:40 -0500 Subject: [PATCH] The ./configure of gmake 4.3 depends on -a not just meaning "and" but being a synonym for -e. (I.E. meaning different things depending on position.) --- toys/posix/test.c | 1 + 1 file changed, 1 insertion(+) diff --git a/toys/posix/test.c b/toys/posix/test.c index e6ea508f..f9a2bbbb 100644 --- a/toys/posix/test.c +++ b/toys/posix/test.c @@ -93,6 +93,7 @@ static int do_test(char **args, int *count) if (*count>=2 && *s == '-' && s[1] && !s[2]) { *count = 2; c = s[1]; + if (c=='a') c = 'e'; if (-1 != (i = stridx("hLbcdefgkpSusxwr", c))) { struct stat st; -- 2.39.2