[bug #62840] make --version in pipe return SIGPIPE

2022-07-30 Thread Tzvetelin Katchov
: 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

[bug #63856] The special target .WAIT does not work as special target on command line.

2023-03-01 Thread Tzvetelin Katchov
: 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

[bug #66050] add option --shuffle=nosort

2024-07-31 Thread Tzvetelin Katchov
: 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

[bug #66050] add option --shuffle=nosort

2024-08-04 Thread Tzvetelin Katchov
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