Skip to content

Commit

Permalink
Fix Makefile build on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
OrdoFlammae authored Sep 22, 2024
1 parent cf48d4d commit a35e9d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ ifeq ($(OS),Windows_NT)
TARGET := libfzf.dll
ifeq (,$(findstring MSYS,$(MSYSTEM)))
# On Windows, but NOT msys
MKD = cmd /C mkdir
RM = cmd /C rmdir /Q /S
MKD = cmd //C mkdir
RM = cmd //C rmdir //Q //S
else
MKD = mkdir -p
RM = rm -rf
Expand Down

0 comments on commit a35e9d7

Please sign in to comment.