From 9dc4ca71ba8784d4576b2c14ad6fb7f6f66441e8 Mon Sep 17 00:00:00 2001 From: "mark@chromium.org" Date: Tue, 1 Jun 2010 20:49:50 +0000 Subject: Add a missing [ that prevented strip_from_xcode from functioning properly with GYP loadable_module-type targets (Xcode mh_bundle-type targets). BUG=0 TEST=NULL Review URL: http://codereview.chromium.org/2434003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48655 0039d316-1c4b-4281-b951-d872f2087c98 --- build/mac/strip_from_xcode | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build') diff --git a/build/mac/strip_from_xcode b/build/mac/strip_from_xcode index ac39aab..c26b9fb 100755 --- a/build/mac/strip_from_xcode +++ b/build/mac/strip_from_xcode @@ -28,7 +28,7 @@ if [ "${MACH_O_TYPE}" = "mh_execute" ] || \ # Strip everything (no special flags). No-op. true elif [ "${MACH_O_TYPE}" = "mh_dylib" ] || \ - "${MACH_O_TYPE}" = "mh_bundle" ]; then + [ "${MACH_O_TYPE}" = "mh_bundle" ]; then # Strip debugging symbols and local symbols FLAGS[${#FLAGS[@]}]=-S FLAGS[${#FLAGS[@]}]=-x -- cgit v1.1