Skip to content

Commit 4ae288c

Browse files
committed
feat(build): re-link eln files by default again
This reverts commit d338c13. Thanks to using relinking with @rpath, paths are shorting leaving enough room in all *.eln files to be signed.
1 parent 3bd78d1 commit 4ae288c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Options:
8181
--[no-]native-comp Enable/disable native-comp (default: enabled if supported)
8282
--[no-]native-march Enable/disable -march=native CFLAG(default: disabled)
8383
--[no-]native-full-aot Enable/disable NATIVE_FULL_AOT / Ahead of Time compilation (default: disabled)
84-
--[no-]relink-eln-files Enable/disable re-linking shared libraries in bundled *.eln files (default: disabled)
84+
--[no-]relink-eln-files Enable/disable re-linking shared libraries in bundled *.eln files (default: enabled)
8585
--[no-]rsvg Enable/disable SVG image support via librsvg (default: enabled)
8686
--no-titlebar Apply no-titlebar patch (default: disabled)
8787
--posix-spawn Apply posix-spawn patch (default: disabled)

build-emacs-for-macos

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1170,7 +1170,7 @@ if __FILE__ == $PROGRAM_NAME
11701170
cli_options = {
11711171
work_dir: File.expand_path(__dir__),
11721172
native_full_aot: false,
1173-
relink_eln: false,
1173+
relink_eln: true,
11741174
native_march: false,
11751175
parallel: Etc.nprocessors,
11761176
rsvg: true,
@@ -1230,7 +1230,7 @@ if __FILE__ == $PROGRAM_NAME
12301230

12311231
opts.on('--[no-]relink-eln-files',
12321232
'Enable/disable re-linking shared libraries in bundled *.eln ' \
1233-
'files (default: disabled)') do |v|
1233+
'files (default: enabled)') do |v|
12341234
cli_options[:relink_eln] = v
12351235
end
12361236

0 commit comments

Comments
 (0)