Index: chrome/app/make_mac_app_symlinks |
=================================================================== |
--- chrome/app/make_mac_app_symlinks (revision 24091) |
+++ chrome/app/make_mac_app_symlinks (working copy) |
@@ -5,14 +5,13 @@ |
# found in the LICENSE file. |
# This script is intended to run from a "postbuild" action from within Xcode. |
-# It sets up symbolic links for an app bundle's Resources and Frameworks |
-# directories. This is intended to be used for app bundles that live within |
-# the Resources directory of a larger app bundle, when the sub-app's |
-# Resources and Frameworks directories should point to the enclosing app's. |
+# It sets up symbolic links for an app bundle's Frameworks directory. This is |
+# intended to be used for app bundles that live within the Resources directory |
+# of a larger app bundle, when the sub-app's Frameworks directory should point |
+# to the enclosing app's. |
set -e |
CONTENTS_PATH="${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Contents" |
-ln -fhs ../.. "${CONTENTS_PATH}/Resources" |
ln -fhs ../../../Frameworks "${CONTENTS_PATH}/Frameworks" |