1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-05-01 01:03:09 +00:00

Fix some tabs in Makefile

Avoid mixing spaces and tabs for indentation in Makefile

closes https://github.com/official-stockfish/Stockfish/pull/4759

No functional change
This commit is contained in:
Stéphane Nicolet 2023-08-22 10:00:03 +02:00
parent fe7353f702
commit 4c5919fa95

View file

@ -895,33 +895,33 @@ netvariables:
net: netvariables net: netvariables
@echo "Default net: $(nnuenet)" @echo "Default net: $(nnuenet)"
@if [ "x$(curl_or_wget)" = "x" ]; then \ @if [ "x$(curl_or_wget)" = "x" ]; then \
echo "Neither curl nor wget is installed. Install one of these tools unless the net has been downloaded manually"; \ echo "Neither curl nor wget is installed. Install one of these tools unless the net has been downloaded manually"; \
fi fi
@if [ "x$(shasum_command)" = "x" ]; then \ @if [ "x$(shasum_command)" = "x" ]; then \
echo "shasum / sha256sum not found, skipping net validation"; \ echo "shasum / sha256sum not found, skipping net validation"; \
elif test -f "$(nnuenet)"; then \ elif test -f "$(nnuenet)"; then \
if [ "$(nnuenet)" != "nn-"`$(shasum_command) $(nnuenet) | cut -c1-12`".nnue" ]; then \ if [ "$(nnuenet)" != "nn-"`$(shasum_command) $(nnuenet) | cut -c1-12`".nnue" ]; then \
echo "Removing invalid network"; rm -f $(nnuenet); \ echo "Removing invalid network"; rm -f $(nnuenet); \
fi; \ fi; \
fi; fi;
@for nnuedownloadurl in "$(nnuedownloadurl1)" "$(nnuedownloadurl2)"; do \ @for nnuedownloadurl in "$(nnuedownloadurl1)" "$(nnuedownloadurl2)"; do \
if test -f "$(nnuenet)"; then \ if test -f "$(nnuenet)"; then \
echo "$(nnuenet) available : OK"; break; \ echo "$(nnuenet) available : OK"; break; \
else \ else \
if [ "x$(curl_or_wget)" != "x" ]; then \ if [ "x$(curl_or_wget)" != "x" ]; then \
echo "Downloading $${nnuedownloadurl}"; $(curl_or_wget) $${nnuedownloadurl} > $(nnuenet);\ echo "Downloading $${nnuedownloadurl}"; $(curl_or_wget) $${nnuedownloadurl} > $(nnuenet);\
else \ else \
echo "No net found and download not possible"; exit 1;\ echo "No net found and download not possible"; exit 1;\
fi; \ fi; \
fi; \ fi; \
if [ "x$(shasum_command)" != "x" ]; then \ if [ "x$(shasum_command)" != "x" ]; then \
if [ "$(nnuenet)" != "nn-"`$(shasum_command) $(nnuenet) | cut -c1-12`".nnue" ]; then \ if [ "$(nnuenet)" != "nn-"`$(shasum_command) $(nnuenet) | cut -c1-12`".nnue" ]; then \
echo "Removing failed download"; rm -f $(nnuenet); \ echo "Removing failed download"; rm -f $(nnuenet); \
fi; \ fi; \
fi; \ fi; \
done done
@if ! test -f "$(nnuenet)"; then \ @if ! test -f "$(nnuenet)"; then \
echo "Failed to download $(nnuenet)."; \ echo "Failed to download $(nnuenet)."; \
fi; fi;
@if [ "x$(shasum_command)" != "x" ]; then \ @if [ "x$(shasum_command)" != "x" ]; then \
if [ "$(nnuenet)" = "nn-"`$(shasum_command) $(nnuenet) | cut -c1-12`".nnue" ]; then \ if [ "$(nnuenet)" = "nn-"`$(shasum_command) $(nnuenet) | cut -c1-12`".nnue" ]; then \