: None
___
Follow-up Comments:
---
Date: Sat 30 Jul 2022 04:24:33 PM UTC By: Tzvetelin Katchov
$ set -o pipefail
$ make --version | head -n1
GNU Make 4.3
$ echo
: None
Triage Status: None
___
Follow-up Comments:
---
Date: Wed 01 Mar 2023 03:13:15 PM UTC By: Tzvetelin Katchov
The special target .WAIT works only as prerequisite in Makefile
: None
___
Follow-up Comments:
---
Date: Wed 31 Jul 2024 07:51:44 PM UTC By: Tzvetelin Katchov
add option --shuffle=nosort
GNU Make manual:
4.4 Using Wildcard Characters in File Names
If an expression m
Follow-up Comment #2, bug #66050 (group make):
> Are you suggesting a way to always build prerequisites
> in an order sorted by their name?
The opposite: build *WILDCARD* prerequisites
in an order *NOT* sorted by their name.
$ touch {a..z}
# Current:
$ make -E "all: *; @echo $^"
a b c d e f g