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.1.7.pre test/fixtures/executable/windows_line_endings
sprout-1.1.5.pre test/fixtures/executable/windows_line_endings
sprout-1.1.4.pre test/fixtures/executable/windows_line_endings
sprout-1.1.3.pre test/fixtures/executable/windows_line_endings
sprout-1.1.2.pre test/fixtures/executable/windows_line_endings
sprout-1.0.35.pre test/fixtures/executable/windows_line_endings
sprout-1.0.32.pre test/fixtures/executable/windows_line_endings
sprout-1.0.31.pre test/fixtures/executable/windows_line_endings
sprout-1.0.29.pre test/fixtures/executable/windows_line_endings
sprout-1.0.26.pre test/fixtures/executable/windows_line_endings
sprout-1.0.25.pre test/fixtures/executable/windows_line_endings
sprout-1.0.24.pre test/fixtures/executable/windows_line_endings
sprout-1.0.23.pre test/fixtures/executable/windows_line_endings
sprout-1.0.22.pre test/fixtures/executable/windows_line_endings
sprout-1.0.20.pre test/fixtures/executable/windows_line_endings
sprout-1.0.19.pre test/fixtures/executable/windows_line_endings
sprout-1.0.18.pre test/fixtures/executable/windows_line_endings
sprout-1.0.17.pre test/fixtures/executable/windows_line_endings
sprout-1.0.16.pre test/fixtures/executable/windows_line_endings
sprout-1.0.15.pre test/fixtures/executable/windows_line_endings