#!/bin/sh
#
# getAppInstallRoot - Return the path to the root of the default install
#		  area for applictions.  /opt, /usr/local ...
#


# This should most likely be overriden in the platforms dirs

echo "/usr/local"


