Skip to content

Commit

Permalink
GNUmakefile: use standard default RM make variable to fix MSYS2 env o…
Browse files Browse the repository at this point in the history
…n windows (#20701)
  • Loading branch information
nsauzede committed Feb 1, 2024
1 parent 232560d commit fb0efc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GNUmakefile
Expand Up @@ -101,8 +101,8 @@ ifdef WIN32
$(CC) $(CFLAGS) -std=c99 -municode -w -o v1.exe $(VC)/$(VCFILE) $(LDFLAGS) -lws2_32
v1.exe -no-parallel -o v2.exe $(VFLAGS) cmd/v
v2.exe -o $(VEXE) $(VFLAGS) cmd/v
del v1.exe
del v2.exe
$(RM) v1.exe
$(RM) v2.exe
else
ifdef LEGACY
$(MAKE) -C $(TMPLEGACY)
Expand Down

0 comments on commit fb0efc0

Please sign in to comment.