Skip to content

Commit ff9435c

Browse files
authored
Delete codesign.sh (#48545)
1 parent a612220 commit ff9435c

File tree

3 files changed

+0
-56
lines changed

3 files changed

+0
-56
lines changed

Makefile

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -438,14 +438,6 @@ ifeq ($(JULIA_BUILD_MODE),release)
438438
else ifeq ($(JULIA_BUILD_MODE),debug)
439439
$(call stringreplace,$(DESTDIR)$(shlibdir)/libjulia-debug.$(JL_MAJOR_MINOR_SHLIB_EXT),$(LOADER_DEBUG_BUILD_DEP_LIBS)$$,$(LOADER_DEBUG_INSTALL_DEP_LIBS))
440440
endif
441-
ifeq ($(OS),Darwin)
442-
# Codesign the libjulia we just modified
443-
ifeq ($(JULIA_BUILD_MODE),release)
444-
$(JULIAHOME)/contrib/codesign.sh "$(MACOS_CODESIGN_IDENTITY)" "$(DESTDIR)$(shlibdir)/libjulia.$(JL_MAJOR_MINOR_SHLIB_EXT)"
445-
else ifeq ($(JULIA_BUILD_MODE),debug)
446-
$(JULIAHOME)/contrib/codesign.sh "$(MACOS_CODESIGN_IDENTITY)" "$(DESTDIR)$(shlibdir)/libjulia-debug.$(JL_MAJOR_MINOR_SHLIB_EXT)"
447-
endif
448-
endif
449441
endif
450442

451443
ifeq ($(OS),FreeBSD)
@@ -501,10 +493,6 @@ ifeq ($(OS), Linux)
501493
endif
502494
ifeq ($(OS), WINNT)
503495
cd $(BUILDROOT)/julia-$(JULIA_COMMIT)/bin && rm -f llvm* llc.exe lli.exe opt.exe LTO.dll bugpoint.exe macho-dump.exe
504-
endif
505-
ifeq ($(OS),Darwin)
506-
# If we're on macOS, and we have a codesigning identity, then codesign the binary-dist tarball!
507-
$(JULIAHOME)/contrib/codesign.sh "$(MACOS_CODESIGN_IDENTITY)" "$(BUILDROOT)/julia-$(JULIA_COMMIT)"
508496
endif
509497
cd $(BUILDROOT) && $(TAR) zcvf $(JULIA_BINARYDIST_FILENAME).tar.gz julia-$(JULIA_COMMIT)
510498

contrib/codesign.sh

Lines changed: 0 additions & 38 deletions
This file was deleted.

contrib/prepare_release.sh

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,6 @@ curl -L -o julia-$version-win32.exe \
5656
$julianightlies/winnt/x86/$majmin/julia-$majminpatch-$shashort-win32.exe
5757
cp julia-$version-win32.exe julia-$majmin-latest-win32.exe
5858

59-
if [ -e codesign.sh ]; then
60-
# code signing needs to run on windows, script is not checked in since it
61-
# hard-codes a few things. TODO: see if signtool.exe can run in wine
62-
./codesign.sh
63-
fi
64-
6559
shasum -a 256 julia-$version* | grep -v -e sha256 -e md5 -e asc > julia-$version.sha256
6660
md5sum julia-$version* | grep -v -e sha256 -e md5 -e asc > julia-$version.md5
6761

0 commit comments

Comments
 (0)