aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDannyDaemonic <DannyDaemonic@gmail.com>2023-05-02 17:52:35 -0700
committerGitHub <noreply@github.com>2023-05-02 17:52:35 -0700
commit55bc5f0900d925c539488901c5538b637d68665c (patch)
tree82e0ecc19c7fcf4a997a3868115c48e44d2ed01c /Makefile
parent9daff419f6be818595ddbea293a0ea7283af726e (diff)
Call sh on build-info.sh (#1294)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6ebc3c5..94acefd 100644
--- a/Makefile
+++ b/Makefile
@@ -213,7 +213,7 @@ save-load-state: examples/save-load-state/save-load-state.cpp build-info.h ggml.
$(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@ $(LDFLAGS)
build-info.h: $(wildcard .git/index) scripts/build-info.sh
- @scripts/build-info.sh > $@.tmp
+ @sh scripts/build-info.sh > $@.tmp
@if ! cmp -s $@.tmp $@; then \
mv $@.tmp $@; \
else \