Skip to content

Commit

Permalink
Explicitly invoke shell
Browse files Browse the repository at this point in the history
in some cases the permission on the script might be incorrect (zip downloads?).
Explicitly invoke the shell

closes official-stockfish/Stockfish#4803

No functional change
  • Loading branch information
vondele committed Sep 24, 2023
1 parent 70ba9de commit 22cdb6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ ifeq ($(ARCH),)
endif

ifeq ($(ARCH), native)
override ARCH = $(shell ../scripts/get_native_properties.sh | cut -d " " -f 1)
override ARCH = $(shell $(SHELL) ../scripts/get_native_properties.sh | cut -d " " -f 1)
endif

# explicitly check for the list of supported architectures (as listed with make help),
Expand Down

0 comments on commit 22cdb6c

Please sign in to comment.