Skip to content

Commit 1912fdd

Browse files
semariemkitti
authored andcommitted
posix compatibility: avoid using ln -v (JuliaLang#53396)
the PR removes `-v` argument from `ln` invocation. it permits to stick to POSIX `ln` version without using extension. it is part of on-going work to port julia to OpenBSD.
1 parent 0c2ae4e commit 1912fdd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

base/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ endif
203203
$(build_bindir)/7z$(EXE):
204204
[ -e "$(7Z_PATH)" ] && \
205205
rm -f "$@" && \
206-
ln -svf "$(7Z_PATH)" "$@"
206+
ln -sf "$(7Z_PATH)" "$@"
207207

208208
symlink_llvm_utils: $(build_depsbindir)/lld$(EXE) $(build_depsbindir)/dsymutil$(EXE)
209209

@@ -216,12 +216,12 @@ endif
216216
$(build_depsbindir)/lld$(EXE):
217217
[ -e "$(LLD_PATH)" ] && \
218218
rm -f "$@" && \
219-
ln -svf "$(LLD_PATH)" "$@"
219+
ln -sf "$(LLD_PATH)" "$@"
220220

221221
$(build_depsbindir)/dsymutil$(EXE):
222222
[ -e "$(DSYMUTIL_PATH)" ] && \
223223
rm -f "$@" && \
224-
ln -svf "$(DSYMUTIL_PATH)" "$@"
224+
ln -sf "$(DSYMUTIL_PATH)" "$@"
225225

226226
# the following excludes: libuv.a, libutf8proc.a
227227

0 commit comments

Comments
 (0)