Skip to content

Commit 2a7f015

Browse files
authored
flambda-backend: Pass -f when rming file during install (#1700)
Pass `-f` when `rm`ing file during install.
1 parent ddaf752 commit 2a7f015

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile.common-jst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ _install: compiler
173173
install: _install
174174
mkdir -p '$(prefix)'
175175
rsync --chmod=u+rw,go+r -rl _install/ '$(prefix)'
176-
rm '$(prefix)/lib/ocaml/ocaml_compiler_internal_params'
176+
rm -f '$(prefix)/lib/ocaml/ocaml_compiler_internal_params'
177177
# rm `ocaml_compiler_internal_params`, which is used to compile the
178178
# stdlib `Float_u` module with `-extension layouts_alpha`, because we
179179
# don't want user programs that happened to be named

0 commit comments

Comments
 (0)