Commit 3c0f41d9 authored by Richard Knoll's avatar Richard Knoll Committed by Commit Bot

[Mac] Fix the rpath for AlertNotificationService.xpc

After https://crrev.com/c/1592230 the relative path to the framework
changed but this rpath was not updated.

Bug: None
Change-Id: I69b044c96a7eefb09534b62245545e20714b92ad
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1986834Reviewed-by: default avatarRobert Sesek <rsesek@chromium.org>
Commit-Queue: Richard Knoll <knollr@chromium.org>
Cr-Commit-Position: refs/heads/master@{#728636}
parent c8ba29ce
...@@ -36,12 +36,12 @@ mac_app_bundle("alert_notification_xpc_service") { ...@@ -36,12 +36,12 @@ mac_app_bundle("alert_notification_xpc_service") {
ldflags = [] ldflags = []
if (is_component_build) { if (is_component_build) {
ldflags += [ ldflags += [
# The XPC service is in Chromium.app/Contents/Versions/X/Chromium \ # The XPC service is in Chromium.app/Contents/Frameworks/Chromium \
# Framework.framework/Versions/A/XPCServices/ \ # Framework.framework/Versions/A/XPCServices/ \
# AlertNotificationService.xpc/Contents/MacOS/ # AlertNotificationService.xpc/Contents/MacOS/
# so set rpath up to the base. # so set rpath up to the base.
"-rpath", "-rpath",
"@loader_path/../../../../../../../../../../../", "@loader_path/../../../../../../../../../../",
] ]
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment