Sha256: 693e7d54c9179c21fe931b038507ea634aaf56f3260096798058b505d082a66d

Contents?: true

Size: 1.24 KB

Versions: 31

Compression:

Stored size: 1.24 KB

Contents

#!/bin/sh

################################################################################
##
##  ADOBE SYSTEMS INCORPORATED
##  Copyright 2007 Adobe Systems Incorporated
##  All Rights Reserved.
##
##  NOTICE: Adobe permits you to use, modify, and distribute this file
##  in accordance with the terms of the license agreement accompanying it.
##
################################################################################

#
# mxmlc launch script for unix.  On windows, mxmlc.exe is used and
# java settings are managed in jvm.config in this directory.
#

case `uname` in
		CYGWIN*)
			OS="Windows"
		;;
		*)
			OS=Unix
esac

if [ $OS = "Windows" ]; then
	# set FLEX_HOME relative to mxmlc if not set
	test "$FLEX_HOME" = "" && {
	FLEX_HOME=`dirname $0`/..
    	FLEX_HOME=`cygpath -m $FLEX_HOME`
	}

elif [ $OS = "Unix" ]; then

	# set FLEX_HOME relative to mxmlc if not set
	test "$FLEX_HOME" = "" && {
	FLEX_HOME=`dirname "$0"`/..
	}

fi

# don't use $FLEX_HOME in this variable because it may contain spaces,
# instead put it on the java args directly, with double-quotes around it
VMARGS="-Xmx384m -Dsun.io.useCanonCaches=false"

java $VMARGS -jar "$FLEX_HOME/lib/mxmlc.jar" +flexlib="$FLEX_HOME/frameworks" "$@"

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
sprout-1.0.14.pre test/fixtures/executable/windows_line_endings
sprout-1.0.13.pre test/fixtures/executable/windows_line_endings
sprout-1.0.11.pre test/fixtures/executable/windows_line_endings
sprout-1.0.9.pre test/fixtures/executable/windows_line_endings
sprout-1.0.8.pre test/fixtures/executable/windows_line_endings
sprout-1.0.5.pre test/fixtures/executable/windows_line_endings
sprout-1.0.4.pre test/fixtures/executable/windows_line_endings
sprout-1.0.3.pre test/fixtures/executable/windows_line_endings
sprout-1.0.2.pre test/fixtures/executable/windows_line_endings
sprout-1.0.1.pre test/fixtures/executable/windows_line_endings
sprout-1.0.0.pre test/fixtures/executable/windows_line_endings