]> Cypherpunks repositories - gostls13.git/commitdiff
misc/dist: remove Xcode files from the darwin binary distribution
authorEmil Hessman <c.emil.hessman@gmail.com>
Fri, 30 Aug 2013 00:11:18 +0000 (10:11 +1000)
committerAndrew Gerrand <adg@golang.org>
Fri, 30 Aug 2013 00:11:18 +0000 (10:11 +1000)
Fixes #6132.

R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/12858049

misc/dist/darwin/scripts/postinstall

index 35c840a37b934ad1177e0379a3c4ac45d99cedbd..13f5bff9b102b4846561a42a6509686d331c337b 100755 (executable)
@@ -8,24 +8,3 @@ find . -exec chmod ugo+r \{\} \;
 find bin -exec chmod ugo+rx \{\} \;
 find . -type d -exec chmod ugo+rx \{\} \;
 chmod o-w .
-
-echo "Installing miscellaneous files:"
-XCODE_SHARED_DIR="/Library/Application Support/Developer/Shared/Xcode"
-XCODE_MISC_DIR="$XCODE_SHARED_DIR/Specifications/"
-if [ -d "$XCODE_SHARED_DIR" ]; then
-       # Create the XCODE_MISC_DIR if it doesn't exist already
-       mkdir -p "$XCODE_MISC_DIR"
-
-       version=`/usr/bin/xcodebuild -version | sed -n -E 's/^Xcode ([0-9]+)\..*$/\1/p'`
-        
-        # Since command line tools are optional with Xcode 4, a failure of the 
-       # xcodebuild -version command is interpreted as meaning Xcode 4 is the 
-       # version used.
-       if [[ $? -ne 0 ]]; then
-               version=4
-       fi
-
-        echo "  Xcode $version"
-       cp $GOROOT/misc/xcode/$version/* "$XCODE_MISC_DIR"
-fi
-