Skip to content

Commit 238d384

Browse files
authored
Set stdlib sources as read-only during installation
We previously did this for `base` and `test` in #55524, may as well do it for `stdlib` as well.
1 parent 9650510 commit 238d384

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,7 @@ endif
385385

386386
# Set .jl sources as read-only to match package directories
387387
find $(DESTDIR)$(datarootdir)/julia/base -type f -name \*.jl -exec chmod 0444 '{}' \;
388+
find $(DESTDIR)$(datarootdir)/julia/stdlib -type f -name \*.jl -exec chmod 0444 '{}' \;
388389
find $(DESTDIR)$(datarootdir)/julia/test -type f -name \*.jl -exec chmod 0444 '{}' \;
389390

390391
# Copy documentation

0 commit comments

Comments
 (0)