#!/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.
##
################################################################################

# acompc script for Unix.
# This simply executes the compc script in the same directory,
# inserting the option +configname=air, which makes
# compc use air-config.xml rather than flex-config.xml.
# On Windows, acompc.bat is used instead.

compc=`dirname "$0"`/compc
"$compc" +configname=air "$@"
